Posts

Post not yet marked as solved
1 Replies
Same issue here, but still looking for a solution.
Post not yet marked as solved
1 Replies
It appears that they released a build that fixes issues in Beta 6, but I can't get the BackyardGrid to display the BackyardBirdsPassOfferCard. I get a build error: Cannot find 'BackyardBirdsPassOfferCard' in scope I added the following code to the BackyardGrid: struct BackyardGrid: View { @State private var searchText = "" @Environment(\.passStatus) private var passStatus @Environment(\.passStatusIsLoading) private var passStatusIsLoading @Query var backyards: [Backyard] var body: some View { ScrollView { if canPresentSubscriptionOfferCard { // Added this to try to show the subscription card. BackyardBirdsPassOfferCard() } Any idea why? Thanks in advance.
Post not yet marked as solved
1 Replies
did you ever come up with a solution for this? I’m not as concerned about the size, and I’m not sure which system fields would be so large, but I do need to know the best solution as it does make sense performance wise. thank You!
Post not yet marked as solved
5 Replies
Are you by any chance setting breakpoints inside of code that's in a framework? I just read somewhere that this is a known issue.
Post not yet marked as solved
8 Replies
I remember reading something in one of Apple's recent release notes about adding support for AppStorage in ObservableObjects. I don't recall the exact build, but if someone has time to dig through release notes, it would be nice to have the reference. In other words, it should work in the latest SwiftUI release.
Post marked as solved
26 Replies
More info added to the issue. I added a do catch around modify subscription method, and see the error returned by CloudKit: "User rejected a prompt to enter their iCloud account password" Obviously, I'm not seeing any prompts. Error is: `do {             _ = try await database.modifySubscriptions(saving: [subscription], deleting:nil             self.setSubscriptionState(recordType: recordType)         } catch(let error) {             logger.debug("(error.localizedDescription)")         } `
Post marked as solved
26 Replies
Tried signing out of iCloud and signing back in, syncing, but it still fails. This is something else.
Post not yet marked as solved
6 Replies
I'm not using firebase. I'm using a custom DataTransformer. Specifying the type here fixed it:     override static var allowedTopLevelClasses: [AnyClass] {         return [NSArray.self, NSString.self]     }
Post not yet marked as solved
4 Replies
Same issue here, iOS 14.5 Beta 7, SwiftUI app.
Post not yet marked as solved
201 Replies
I hate to speculate, but this was working with iOS 14, just before WWDC2020. Then they announced a security vulnerability that was discovered with sign-in with Apple and the keychain, and immediately following that announcement, the simulator Sign-In with Apple would just hang with an infinite spinner. Others have reported that the TFA is the culprit, so perhaps there is something to that and the backdoor that they discovered. Let's hope they figure out a way to patch it up. Edit: Please upvote this...
Post not yet marked as solved
8 Replies
Same problem here. I've read that a ticket has been filed, and the workaround is to set a state variable. This seems wonky and potentially working around some reasoning that apple has for calling it more than once, which they don't indicate why.