Post

Replies

Boosts

Views

Activity

Reply to Issue Setting up Appstore Information
Please don't create multiple posts about the exact same issue. Besides, this isn't the place for your post. These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. Your question is more of a product support one, so I'd suggest you ask it over at the Apple Support Forums, and please don't post images containing your personal information.
Mar ’25
Reply to HomeKit
Cheers for your rant, but you're in the wrong place. These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. Your question is more of a product support one, so I'd suggest you ask it over at the Apple Support Forums. Thanks.
Topic: Community SubTopic: Apple Developers Tags:
Mar ’25
Reply to NSString initWithFormat crash on ios18
You should probably raise this as a bug in the usual way. It won't really get progressed if it's only posted in these Developer Forums. You need to raise each issue you find separately at https://feedbackassistant.apple.com/ You can post the FB numbers here if you want, so that others can link to them.
Topic: App & System Services SubTopic: General Tags:
Mar ’25
Reply to How to use core spotlight ?
I replied to this, but my reply seems to have disappeared... Here we go (again): (And now it's appeared. Apple, issues with the forums after your changes overnight?) Aside from printing nothing (""), I think you're doing this in the wrong place. I have this in my main app's WindowGroup. It just loads the PhoneView: var body: some Scene { WindowGroup { PhoneView() .environment(modelData) // The difference is that I'm not continuing the Spotlight activity here, unlike you. } } struct PhoneView: View { var body: some View { VStack { // Blah blah blah } .onContinueUserActivity(CSSearchableItemActionType, perform: handleSpotlight) } private func handleSpotlight(userActivity: NSUserActivity) { guard let uniqueIdentifier = userActivity.userInfo?[CSSearchableItemActivityIdentifier] as? String else { return } if(!uniqueIdentifier.isEmpty) { // Handle the Spotlight activity } } }
Mar ’25
Reply to Merge 2 Apple IDs
These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. Your question is more of a product support one, so I'd suggest you ask it over at the Apple Support Forums. Thanks.
Mar ’25