Post

Replies

Boosts

Views

Activity

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 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 Apple Developer Enterprise Program
Hello, I've worked with many companies that use the Apple Developer Enterprise Program. Unless things have recently changed, the Enterprise Program will let you sign your apps with an Enterprise Certificate that will allow your apps to run on any device. You do not need to submit them to the App Store at all. Assuming that your MDM provider allows you to distribute apps, you can 'push' the app to devices with the MDM software. You can also host the ipa on a local web server for users to download using Safari on their iOS devices. Hope that helps
Feb ’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
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 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 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 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 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 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 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 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 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 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 Methods to Wake Up an App
This is what I found online: https://developer.apple.com/documentation/networkextension/local_push_connectivity
Replies
Boosts
Views
Activity
Jan ’24
Reply to Apple Developer Enterprise Program
Hello, I've worked with many companies that use the Apple Developer Enterprise Program. Unless things have recently changed, the Enterprise Program will let you sign your apps with an Enterprise Certificate that will allow your apps to run on any device. You do not need to submit them to the App Store at all. Assuming that your MDM provider allows you to distribute apps, you can 'push' the app to devices with the MDM software. You can also host the ipa on a local web server for users to download using Safari on their iOS devices. Hope that helps
Replies
Boosts
Views
Activity
Feb ’24
Reply to size, color formatting of DatePicker
I couldn't find an easy way to alter the text color but regarding alignment, you could select all the vertical fields and embed them in a stack view. That way, you can center them relative to the stack view.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Feb ’24
Reply to Need Help with iOS 17 Simulator Installation Error (-67061)
See if this helps: https://forums.developer.apple.com/forums/thread/711258
Replies
Boosts
Views
Activity
Feb ’24