Post

Replies

Boosts

Views

Activity

Reply to Sign In With Apple not working with Xcode 12 beta on simulator ?
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...
Topic: App & System Services SubTopic: General Tags:
Dec ’20
Reply to iOS 15 beta 4 CloudKit Auth Error
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)")         } `
Jul ’21
Reply to Update for sample-backyard-birds
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.
Aug ’23