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