Thanks for replying. From what I’ve read so far an App Clip works as a URL scheme behind the scenes. Without uploading the shared file to my private server (a potential privacy issue) is there a way to pass a mail attachment (or other local file content) to an App Clip? I admit I still have more reading/watching to do, so no need to go into great detail if you can point me in the right direction or tell me it’s impossible at the moment. Basically I want my App Clip to work as a Quicklook Preview extension without having to purchase the app.
Post
Replies
Boosts
Views
Activity
I'm encountering this issue today using iOS 14 beta 7. Did either of you ever find a solution?
I was able to KVO UITableViewCell.layer.hidden as an indication that the cell has been removed from the table view
To answer my own question:
Use ViewThatFits and build views with every possible count. Seems unnecessarily expensive but it works.
var body: some View {
ViewThatFits {
ForEach((1...entry.toDos.count).reversed(), id: \.self) { limit in
VStack(alignment: .leading, spacing: 4) {
ForEach(entry.toDos.prefix(limit), id: \.self.identifier) { entry in
ToDoView(checked: entry.completed, flag: entry.flag, text: entry.name)
}
if (limit < entry.toDos.count) {
Text(String(format:NSLocalizedString("%i more...", comment: "[n] more..."), entry.toDos.count - limit))
.font(.footnote)
.foregroundStyle(.secondary)
.padding(.leading, 24)
.padding(.top, -3)
.unredacted()
}
}
}
}
}