Post

Replies

Boosts

Views

Activity

Reply to Hidden app is displayed in "Time of use"
When you set an app to be hidden, you see a popup that says, "App content will not appear in notification preview software Spotlight". It doesn't remove it from every aspect of the OS. If you think it shouldn't be seen where you say, then may I suggest you raise a feedback report with Apple? It won't really get any traction just here as a post in a forum that's supposed to be for third-party developers, i.e. not Apple employees, to discuss issues in their code. 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.
Sep ’24
Reply to Iphone Mirroring Bug
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.
Sep ’24
Reply to Difficulties with Apple Maps on CarPlay
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, because these forums are where third-party developers chat about issues in their code. 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.
Sep ’24
Reply to Home Screen Icons
These are the Developer Forums, where developers of third-party apps for Apple's platforms ask each other for hints and tips on coding. These forums are not where Apple's actual employee developers chat about what they're doing in the platform code. If you have a suggestion, you should raise it at: https://www.apple.com/feedback/ but please note that your post doesn't really explain the issue, so please be clearer, perhaps including a screen recording.
Sep ’24
Reply to n/a
Raise it as a suggestion. It's no good posting feature requests here; these are the Developer Forums where developers of apps for Apple's platforms ask for help on how to do something in code. https://feedbackassistant.apple.com/
Sep ’24
Reply to How to upgrade 14pro max with iOS beta18.0 to 15pro max
Do you want to remain on the beta? If so: Buy the new iPhone 15 Pro Max. Install the same beta version on it. Backup your old iPhone. Restore your new iPhone from the new backup. If you don't want to be on the beta: Buy the new iPhone 15 Pro Max. Restore it from a backup you took from before you started using the betas, if you have one. If not, then you might be stuck with a fresh phone and will have to reinstall everything you want.
Sep ’24
Reply to EXC_BAD_ACCESS (SIGSEGV) crash observed in NSDateFormatter APIs
I think you have to set your date formatter's locale before setting the format: NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; NSDate *date = [NSDate dateWithTimeIntervalSinceReferenceDate:410220000]; // US English Locale (en_US) dateFormatter.locale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"]; [dateFormatter setLocalizedDateFormatFromTemplate:@"MMMMd"]; // set template after setting locale NSLog(@"%@", [dateFormatter stringFromDate:date]); // December 31 // British English Locale (en_GB) dateFormatter.locale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_GB"]; [dateFormatter setLocalizedDateFormatFromTemplate:@"MMMMd"]; // set template after setting locale NSLog(@"%@", [dateFormatter stringFromDate:date]); // 31 December
Sep ’24
Reply to Zombie Xcode problem
Does this exhibit itself by you trying to quit it, then the "Quit" item in the menu is disabled? If so, yes, this has happened to me a number of times. I also end up force-quitting it, and I raised a bug. I suggest you also raise a bug: https://feedbackassistant.apple.com/ then post the FB number here.
Sep ’24