Post

Replies

Boosts

Views

Activity

Reply to Strange Crashes in iOS 16.4.1 and higher
Since there's no clear explanation, I would make 2 changes to see if they fix the issue: static DWNotificationView *singleton = nil; //nil and NULL are supposed to be the same but nil is preferred for objects in Obj C if (singleton == nil) //this also shouldn't matter but you never know if fast optimization is picky
Jan ’24
Reply to Invalid Binary
I think it's related to the following note on https://developer.apple.com/documentation/bundleresources/information_property_list/uirequireddevicecapabilities/: Important Your app must include the UIRequiredDeviceCapabilities key in the Information Property List file that you submit with your binary. For app updates, you can only maintain or relax capability requirements. Submitting an update with added requirements would prevent some customers who previously downloaded your app from running the update. If you've changed UIRequiredDeviceCapabilities from your previous submission, revert the changes and I think it'll work.
Jan ’24
Reply to Xcode 15 debug executable failed
Sometimes, restarting the Mac and the device takes care of stuff like this. It's worth a try.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jan ’24
Reply to lots xcode crashes using Fix with SwiftUI code
Try Xcode 15.2. I'm sure they've fixed a lot of bugs
Replies
Boosts
Views
Activity
Jan ’24
Reply to Universal Link works in safari but not in chrome
Do you have an example of the link? What do you see in Chrome when it doesn't work? I'm sure Chrome has debug tools to figure out what the response is. If you post some more info or screenshots, someone can help.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jan ’24
Reply to microphone cracking / distortion
Hello This is a developer forum. You should post your question in the support forum: https://discussions.apple.com/welcome
Topic: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
Jan ’24
Reply to Iphone 13 Pro Max unknown Display
This is a developer forum. You should post your question in the support forum: https://discussions.apple.com/welcome
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jan ’24
Reply to Xcode 15.2 doesn't support 17.X version of device
Xcode 15.2 works for my iOS 17.2 device as well. Try restarting your device. Sometimes that fixes weird issues. Also, I checked /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport and even I see only up to 16.4. I don't think that's related to the problem.
Replies
Boosts
Views
Activity
Jan ’24
Reply to Strange Crashes in iOS 16.4.1 and higher
Since there's no clear explanation, I would make 2 changes to see if they fix the issue: static DWNotificationView *singleton = nil; //nil and NULL are supposed to be the same but nil is preferred for objects in Obj C if (singleton == nil) //this also shouldn't matter but you never know if fast optimization is picky
Replies
Boosts
Views
Activity
Jan ’24
Reply to help me to find the actual reason of crash in my app
Are you able to test it on an actual device?
Replies
Boosts
Views
Activity
Jan ’24
Reply to Invalid Binary
I think it's related to the following note on https://developer.apple.com/documentation/bundleresources/information_property_list/uirequireddevicecapabilities/: Important Your app must include the UIRequiredDeviceCapabilities key in the Information Property List file that you submit with your binary. For app updates, you can only maintain or relax capability requirements. Submitting an update with added requirements would prevent some customers who previously downloaded your app from running the update. If you've changed UIRequiredDeviceCapabilities from your previous submission, revert the changes and I think it'll work.
Replies
Boosts
Views
Activity
Jan ’24
Reply to Is the TestFlight a kind of Staging Environment?
I think of TestFlight as a staging App Store. You'll publish your app to TestFlight so that your selected TestFlight users can try it. Fix bugs and publish updates to TestFlight. Once you're happy with the testing/feedback, you'll release that version to the App Store.
Replies
Boosts
Views
Activity
Jan ’24
Reply to Which of the CLLocationUpdate.LiveConfiguration uses least battery?
It's difficult to say. What are you using it for? If it doesn't fall into one of the listed modes, I would use default and expect the OS to do the right thing.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jan ’24