Post

Replies

Boosts

Views

Activity

Reply to Why I can't see my teams while creating StoreKit Configuration File
I had the same issue, and when I checked on my developer account list (I got multiple developer accounts) in my Xcode -> Settings -> Accounts I could see there is one account has a sign-in issue (the password was changed on the web, but forgot to sign in to Xcode.), I removed it and then StoreKit Configuration Teams populated when I tried it again. So, simply put, check your account section of Xcode settings, all the accounts (if you have multiple) should have been setup correctly.
Jun ’24
Reply to How to save FamilyActivitySelection in FirebaseFirestore
Hi, you can try saving it to local UserDefaults or you can try to utilize the following solution to store in the FireStore. let encoder = PropertyListEncoder() let decoder = PropertyListDecoder() //When saving selection UserDefaults.standard.set(try? self.encoder.encode(newValue), forKey: DefaultKeys.familyControlSelections) //When retrieving Selection guard let data = UserDefaults.standard.data(forKey: DefaultKeys.familyControlSelections) else { print("====> no data saved in the family controls user defaults") return } if let selections = try? decoder.decode(FamilyActivitySelection.self, from: data){ self.store.shield.applications = selections.applicationTokens.isEmpty ? nil : selections.applicationTokens self.store.shield.applicationCategories = ShieldSettings.ActivityCategoryPolicy.specific(selections.categoryTokens, except: Set()) self.store.shield.webDomains = selections.webDomainTokens }
Topic: Programming Languages SubTopic: Swift Tags:
Dec ’23
Reply to Redeeming code stucks very often after pressing "Redeem offer code"
We are facing the same issue. and that supposed to dismissed and in to closure of the present offer redemption code method. It is only working on close button only. but if there is a big "Open App" button users are going to use it there. Please fix this.
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Jul ’24
Reply to No way to close the page for subscription Offer Code processing invoked by "SKPaymentQueue.default().presentCodeRedemptionSheet()".
Same issue here.
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Jun ’24
Reply to Why I can't see my teams while creating StoreKit Configuration File
I had the same issue, and when I checked on my developer account list (I got multiple developer accounts) in my Xcode -> Settings -> Accounts I could see there is one account has a sign-in issue (the password was changed on the web, but forgot to sign in to Xcode.), I removed it and then StoreKit Configuration Teams populated when I tried it again. So, simply put, check your account section of Xcode settings, all the accounts (if you have multiple) should have been setup correctly.
Replies
Boosts
Views
Activity
Jun ’24
Reply to How to save FamilyActivitySelection in FirebaseFirestore
Hi, you can try saving it to local UserDefaults or you can try to utilize the following solution to store in the FireStore. let encoder = PropertyListEncoder() let decoder = PropertyListDecoder() //When saving selection UserDefaults.standard.set(try? self.encoder.encode(newValue), forKey: DefaultKeys.familyControlSelections) //When retrieving Selection guard let data = UserDefaults.standard.data(forKey: DefaultKeys.familyControlSelections) else { print("====> no data saved in the family controls user defaults") return } if let selections = try? decoder.decode(FamilyActivitySelection.self, from: data){ self.store.shield.applications = selections.applicationTokens.isEmpty ? nil : selections.applicationTokens self.store.shield.applicationCategories = ShieldSettings.ActivityCategoryPolicy.specific(selections.categoryTokens, except: Set()) self.store.shield.webDomains = selections.webDomainTokens }
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Dec ’23
Reply to Apple Developer Admin does not have access to create bundle ID
I got the same issue. I'm working for several companies only the old once I can see clearly.. but not the new company in the developer.apple.com, even though I can access the Appstore connect without any issue.
Replies
Boosts
Views
Activity
Nov ’23
Reply to Xcode 15 linking error
Adding, "-ld64" to "Other linker Flags" worked for me too. Thank you all.
Replies
Boosts
Views
Activity
Jun ’23
Reply to CALayer message while playing video (Xcode 12.5.1, Swift 5)
I added border width to a stack view in objective C. This is working in iOS 16, but when I tested on 12.5 it is not showing the border. it is giving me "<CATransformLayer: 0x283458b20> - changing property borderWidth in transform-only layer, will have no effect" on my debug log in Xcode. Any suggestions?
Replies
Boosts
Views
Activity
May ’23