Posts

Post not yet marked as solved
3 Replies
From the Xcode 13 beta 3 release notes: Linking Swift packages from application extension targets or watchOS applications no longer emits unresolvable warnings about linking to libraries not safe for use in application extensions. This means that code referencing APIs annotated as unavailable for use in app extensions must now themselves be annotated as unavailable for use in application extensions, in order to allow that code to be used in both apps and app extensions. (66928265) You can add the: @available(iOSApplicationExtension, unavailable) attribute to declarations using app extension unavailable APIs in order to get them to compile in a way that works for both apps and app extensions.
Post not yet marked as solved
1 Replies
you can revoke YOUR APP by going to. iPhone Settings > Apple Id > Password & Security > Apple ID logins > {YOUR APP} > Stop using Apple ID
Post not yet marked as solved
1 Replies
The ForEach should be wrapped in a list     View: some View {         List {             ForEach(threadDataStore.childCommentList, \.self) { id in                 CommentView(comment: childComments[id]!)             }         }     }
Post not yet marked as solved
22 Replies
Thanks @724QD58FHA  that fixed it for me