Post

Replies

Boosts

Views

Activity

Reply to iOS 18.4 beta 4 tipkit crash
Thanks for the response. Here is my code. It works on iOS 18.3 and even on iOS 18.4 Beta 4 Presenting the tip: Task { @MainActor in if await self.histogramTip.shouldDisplay { let controller = TipUIPopoverViewController(self.histogramTip, sourceItem: self.versionChartView) self.present(controller, animated: true) } } Definition of the tip: struct HistogramTip: Tip, Identifiable { var id: UUID = UUID() var title: Text { Text("Firmware Info") } var message: Text? { Text("Tap on any bar to see info about the firmware version") } } I also do this in the AppDelegate: try? Tips.configure([ .displayFrequency(.immediate) ])
Topic: UI Frameworks SubTopic: General Tags:
Mar ’25
Reply to In-app purchase localization issue
One year later this issue still exists. Can anyone tells me if the issue has been solved for them and if there is a workaround? Specifically, my app has 7 localizations for subscriptions (IAP). The app shows Dutch localization for users whose device is sent to English (including myself). There is a yellow dot next to some of the localizations. All in-app purchases have been approved a few days ago.
Topic: App & System Services SubTopic: StoreKit Tags:
Feb ’22
Reply to Do you equalize your prices based on purchasing power of different countries?
An automated version that can do this would be great
Replies
Boosts
Views
Activity
Dec ’25
Reply to Issue with DeviceActivityMonitor - eventDidReachThreshold Callback Not Triggering Properly
I also observed eventDidReachThreshold being called twice within 1 sec and it caused problems in my app (because it changes state when it should not). I added debouncing code.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’25
Reply to App Shortcuts: Invalid parameter type. AppEntity and AppEnum are the only allowed types...
I have the same issue. Since I am using the FoundationModels to process the user question, I cannot use AppEnum. The user experience where they have to first say "Ask <app_name>" and then ask their question is bad. What's the solution in this case? I want it to be like "Siri, ask chatGPT "
Topic: UI Frameworks SubTopic: General Tags:
Replies
Boosts
Views
Activity
Oct ’25
Reply to Subscription Unavailable - Strange Behavior with StoreKit
I can confirm that this issue is not resolved. iOS 18.5. Apple, please fix this
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Jun ’25
Reply to iOS 18.4 beta 4 tipkit crash
Thanks for the response. Here is my code. It works on iOS 18.3 and even on iOS 18.4 Beta 4 Presenting the tip: Task { @MainActor in if await self.histogramTip.shouldDisplay { let controller = TipUIPopoverViewController(self.histogramTip, sourceItem: self.versionChartView) self.present(controller, animated: true) } } Definition of the tip: struct HistogramTip: Tip, Identifiable { var id: UUID = UUID() var title: Text { Text("Firmware Info") } var message: Text? { Text("Tap on any bar to see info about the firmware version") } } I also do this in the AppDelegate: try? Tips.configure([ .displayFrequency(.immediate) ])
Topic: UI Frameworks SubTopic: General Tags:
Replies
Boosts
Views
Activity
Mar ’25
Reply to watchOS 10.5 beta 3: complication shows placeholders
related question: https://forums.developer.apple.com/forums/thread/750801?page=1#786509022
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Apr ’24
Reply to Major regressions in Apple Watch development support with watchOS 10.5 and Xcode 15.4
Here is another related question: https://forums.developer.apple.com/forums/thread/750826
Replies
Boosts
Views
Activity
Apr ’24
Reply to Interactive Widgets and Haptic feedback
It would be possible because this app does it: https://apps.apple.com/us/app/desktop-calculator/id6450638014
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Apr ’24
Reply to The promo code for the following could not be generated. Try generating it again.
I've been trying to do this since yesterday and it keeps failing
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Jan ’24
Reply to Section 11.2 (Termination) states: Apple Developer Program License Agreement (PLA) violation
Can you let us know how you resolved the issue?
Replies
Boosts
Views
Activity
Jan ’24
Reply to In-app purchase localization issue
I had to call Apple developer support to get this problem fixed
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Mar ’22
Reply to In-app purchase localization issue
One year later this issue still exists. Can anyone tells me if the issue has been solved for them and if there is a workaround? Specifically, my app has 7 localizations for subscriptions (IAP). The app shows Dutch localization for users whose device is sent to English (including myself). There is a yellow dot next to some of the localizations. All in-app purchases have been approved a few days ago.
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Feb ’22
Reply to watchOS 6 privacy Permission
If you have found the answer to this question, can you please post here? The authorizationStatus is .notDetermined on the watch and I CMAltimeter uses the iPhone altimeter (instead of the watch altimeter)
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Oct ’21