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.
Post
Replies
Boosts
Views
Activity
This isn't an issue for third-party developers (which is what these forums are for).
You need to raise this in the usual Apple Support Forums. Thanks.
No need to SHOUT...
What Mac are you running Sequoia on? Does the Mirroring app appear in /Applications? You say it's not connecting, is there an error? What's the error message? Are you able to run the Mirroring app?
This is like saying, "My car isn't working", and not telling the recovery guys what the issue is.
This is a bug for Firefox, not for third-party developers writing apps for Apple's platforms. You should raise this with Mozilla.
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.
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.
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.
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/
What do you mean by "records" and "iCloud database"? Do you mean files in your iCloud Drive?
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.
If the app is crashing on launch then you should be able to debug it with the code, right? Have you tried? Does it crash?
You can edit your posts within an hour of posting them. If you're out of time, just add a new message to your original post. There's no need to create duplicate posts.
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
It's possible you're doing something wrong in your code, but without seeing that code it's unlikely we'll be able to help.
Can you provide a small reproducible example?
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.