Post

Replies

Boosts

Views

Activity

Reply to Safari ram issues after installing Xcode
I've got 16GB Mac Book pro 2021. All I'm running is Outlook and Teams and Xcode 15.8 Beta and recently I've been getting messages saying I've run out of application memory. Never had this problem before, including with the 15.1 to 15.7 betas, its only the very latest Xcode that has started causing this. Turning off Outlook and Teams in order to free up a little more memory is just totally unfeasible as it means one if disconnected from work contact.
Sep ’23
Reply to App crashes in review but works in Simulator
There are very often crashes that only appear on hardware that don't appear on the simulator. Or crashes that only appear on release builds of hardware that don't appear on debug builds of hardware. To have released something for App Store review when you have not even run it on hardware is a very very risky dangerous thing to do, and now you are discovering why.
Aug ’23
Reply to Uninstall old Xcode version
I don't understand. You just find it (in the Applications folder, if that's where its installed), then drag and drop to the trash can or right click and move to trash, same as any app. What's the problem you are encountering? After deleting 14.3, you should rename the XCode-beta app to Xcode
Aug ’23
Reply to How to use com.apple.developer.usernotifications.filtering entitlement
The entitlement is added to the entitlements file as: However it will only work if the entitlement is within the provisioning profiles for the app. You have to apply to Apple and request the entitlement, if they grant it then it will get added to your profile. Have you requested it from Apple? You don't specify in the entitlements file what pushes you want filtered, you do that at run time in your notification service extension, you examine the push payload and then decide if you want the notification displayed to the user or not.
Aug ’23
Reply to Mystery Inverted Bool
DispatchQueue.main.async is, as it says in its name, asynchronous. Therefore your code is not executing in a linear line-by-line manner. You think the code is being executed in this order don't you: 1) DispatchQueue.main.async { 2) self.stillLoading = true } 3) print(stillLoading) It is NOT the case the line 2 is guaranteed to execute before line 3. Because line 1 is asynchronous, after 1 has executed, then control will jump to line 3 and meanwhile line 2 is dispatched to execute in parallel.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Aug ’23
Reply to Application will not be launched because it failed to report an incoming call too many times (or repeatedly crashed.)
@DTS Engineer "It will reset itself every ~24 hours but you can also reset it "manually" by either restarting the device or deleting and reinstalling the app." (on iOS 16.6) neither deleting and then re-installing the app, nor restarting the phone, resets the "Application will not be launched because it failed to report an incoming call too many times". Is there any other way to reset this (during development) other than wait 24 hours?
Aug ’23