Hi,
Having a weird issue that I’m noticing on Apple TVs with some apps that are by the same company. I think it’s storing residual user data if if you delete the app and all other apps relating to this. I have even tried deleting every app and reinstalling but we found two apps to be still logged in. Seams like a sandboxing bug and I presume it’s to do with App data stored in the shared app groups.
I can only reset the apple tv to remove the user data. The two apps we can see are being persistent is Binge and Kayo by streamotion.
We have tried problem solving this in every way imaginable but it’s Interesting that this is allowed to happen on an Apple platform. There is no active user logged into the apple TV with an Apple ID either
This is a dedicated space for developers to connect, share ideas, collaborate, and ask questions. Introduce yourself, network with other developers, and join us in fostering a supportive community.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Created
Ever since last weeks 18.5 beta update, the Deltek Vision T&E app no longer opens. I did the next update last night, still not working. I've deleted the app, restarted phone, re-installed, still the same behavior. When you open the app, it just spins and nothing ever happens, don't get to login screen or anything.
Topic:
Community
SubTopic:
Apple Developers
My imessage has been acting up for 1 month now. It fails to activate my phone number and prefers my email. This is a beta issue Apple support has told me and it needs fixing asap.
Topic:
Community
SubTopic:
Apple Developers
Installed update on Monday night and since then keep losing Network connection despite resettting Network connections and iphone.
Comes back for a short time after rsetting then is lost with nothing showing under Mobile Service.
Topic:
Community
SubTopic:
Apple Developers
Hi!
About a month ago (somewhere around the release of iOS 18.4.1 and MacOS 15.4.1) I started having issues with the iPhone Mirroring app, saying that it's unable to connect to iPhone, although it worked seamlessly before.
In error console log I see this chain of events:
error 19:00:51.054054+0200 iPhone Mirroring unable to get entitlements for client task. Error: nil
error 19:00:51.054074+0200 iPhone Mirroring AppleEvent sender is not entitled
error 19:00:51.098453+0200 iPhone Mirroring Tearing down the session due to: noCompatiblePhone
error 19:00:51.139329+0200 iPhone Mirroring CAML error:727: No such class `LKEventHandler'
error 19:00:51.139342+0200 iPhone Mirroring CAML error:727: Unknown value element `LKEventHandler'
error 19:00:51.139349+0200 iPhone Mirroring CAML error:727: `o' element must have `type' attribute
I tried literally every solution I could find, including deleting all possible preferences, but to no avail.
It also might be worth mentioning that since these issues started, I can't AirPlay from my iPhone to my Mac unless I switch the "Allow Airplay for" option to either "Anyone on the same network" or "Everyone".
Can anyone tell me if this may be something connected to those latest updates, or is there anything else I can try on my end?
Thanks in advance!
Currently running 15.5 Beta 3 on a Mac Studio M4. I am unable to read/write to my Home folder from most of my applications. I receive an error basically saying I do not have access rights to the file/folder. If I go to the file directly and open it, it works. I have repaired disk permissions, checked the Sharing & Permissions settings via Get Info, and finally called Apple. Of course, since I am running the beta, the support was quite limited. I will add that I am also unable to open .dmgs that have been downloaded to my Downloads folder. I receive the "The disk image couldn’t be opened. The operation couldn’t be completed. Operation not permitted" error. If I copy the .dmg to another drive, I can open it from there.
Topic:
Community
SubTopic:
Apple Developers
On my first attempt at adding iCloud to my existing app this is how far I've gotten. For reasons that I won't go into, the use case for my app does not need coordination. I have successfully made my app write a file to the Documents directory of iCloud and read back that same file without errors. In testing on a real iPhone 13 and iPhone 7 I have verified that my app can write a file to iCloud from the iPhone 7 and then read back that same file on the iPhone 13, so I know that the file truly exists in the cloud. But when I make my app on the iPhone 13 write to iCloud, my app on the iPhone 7 says the file does not exist. Exactly the same build of my app is running in both phones. This is problem #1. Problem #2 is that none of these files appear in the iCloud section of the Files app on either of these Phones, nor do they appear in the iCloud section of my Mac. All devices are signed in to my same Apple account in iCloud. Also my info.plist file in the app contains:
<key>NSUbiquitousContainers</key>
<dict>
<dict>
<key>iCloud.com.{my domain}.{my app}</key>
<dict>
<key>NSUbiquitousContainerIsDocumentScopePublic</key>
<true/>
<key>NSUbiquitousContainerSupportedFolderLevels</key>
<string>Any</string>
<key>NSUbiquitousContainerName</key>
<string>{my app}</string>
</dict>
</dict>
</dict>
<key>UIFileSharingEnabled</key><true/>
The iPhone 7 is running iOS 15.8.4 and the iPhone 13 is running iOS 18.3.2.
The code that does the writing to iCloud is:
NSFileManager *fman = [NSFileManager defaultManager];
NSURL *urlDrive = [fman URLForUbiquityContainerIdentifier: nil];
NSURL *urlDocs = [urlDrive URLByAppendingPathComponent:@"Documents"];
if(urlDocs.path == nil) {
NSLog(@"NULL path");
return; //..big problem
}
if( ! [fman fileExistsAtPath: urlDocs.path] ) { //..need to create the Docs directory
NSError *err00 = nil;
@try {
[fman createDirectoryAtURL: urlDocs withIntermediateDirectories:true
attributes:nil error:&err00];
NSLog(@"created the directory");
} @catch (NSException *except) {
NSLog(@"Exception creating directory %@", except);
}
} //..directory is now created
NSLog(@"url=%@", urlDocs);
NSURL *urlFile = [urlDocs URLByAppendingPathComponent:txtfname()];
NSData *fdata = [@"Hello world" dataUsingEncoding: NSUTF8StringEncoding];
NSLog(@"file url=%@", urlFile);
NSLog(@"file Data=%@", fdata);
NSError *errorReturn = nil;
Boolean ret = [fdata writeToURL: urlFile options: NSDataWritingAtomic error: &errorReturn];
NSLog(@"returned %1d, error=%@", ret?1:0, errorReturn);
And the code that does the reading is:
NSFileManager *fman = [NSFileManager defaultManager];
NSURL *urlDrive = [fman URLForUbiquityContainerIdentifier: nil];
NSURL *urlDocs = [urlDrive URLByAppendingPathComponent:@"Documents"];
NSLog(@"url=%@", urlDocs);
if(urlDocs.path == nil) {
NSLog(@"urlDocs.path is NULL!");
return; //..big problem
}
if( ! [fman fileExistsAtPath: urlDocs.path] ) { //..need to create the Docs directory
NSLog(@"It seems the urlDocs folder does not exist");
}
NSURL *urlFile = [urlDocs URLByAppendingPathComponent:txtfname()];
if([fman fileExistsAtPath: urlFile.path]) {
NSLog(@"file %@ exists", urlFile);
[fman copyItemAtURL: urlFile toURL:<#(nonnull NSURL *)#> error:<#(NSError *__autoreleasing _Nullable * _Nullable)#>];
} else {
NSLog(@"file %@ DOES NOT EXIST!", urlFile);
}
i am running iOS 18.5 beta 3 (iPhone 16 pro max) and my phone will not connect wirelessly to any of my vehicles. When connected via the apple certified usb-c cord, it will connect just fine. I have removed all vehicles from my phone, then removed my phone from both vehicle, reconnected, and it still will not connect wirelessly.
Topic:
Community
SubTopic:
Apple Developers
Anyone else having issues with books since the update - where all epubs have been wiped or it is disclosed that it not a format applicable to Apple Books?
Will the iOS 18.5 update fix bugs from 18.4.1 for iPhone 16 Pro users?
my app was kicked off the App Store because it needed updating. i have now done that and it is ready for TestFlight. before I uploaded it, I had look around the App Store to see if there were any similar apps and I found one which just looks like it’s pinched the ideas about how it works-it’s uniqueness claiming to be the first of its kind and who it is aimed at Its not exactly the sameseems silly similar to mine as I was reading the text seemed similar to mine. it’s not exactly the same but the principle of it the idea of the way it works is definitely the same as mine. I couldn’t look at the code because it didn’t seem to be open source software databases. it is not free to download but I didn’t want to buy it. Is there a way of finding out more about its. Function and ti see / compare the code to see if there is infringement or a violation.
Topic:
Community
SubTopic:
Apple Developers
As of today we seem to continuously get back 21 of the product IDs we have defined when the shop initializes.
This is causing what looks like intermittent bug behavior in our shop. The IDs sent each time are random (not always the same 21). So sometimes they match shop offers and the packs look right and can be bought and sometimes the ones our current shop offers need are not sent and so the offers in game look wrong and error when you try to buy.
Is anyone else seeing this new behavior of not getting down all their product IDs successfully?
The Uber Driver app is able to get background location and there’s no way to turn it off from settings. Unlike other apps where there’s always an option to turn off background location from settings.
Is this a bug or special treatment for big companies?
this matters to me because we’re in a similar business but our app has to request background permissions, explicitly.
I am attaching both of the screenshots here for you to compare and see.
Please note that I verified personally that Uber Driver app is able to get background location.
Officially I was tiredness after was I’m install of ios 18.5 after I got error red logo. And now she stop updating and was I very shocked more. “I searched or hell is this” they don’t know results from this iPhone 11 is jailbroken Yup is my iPhone 11 is jailbroken how we gonna do. Tell me is this real?
Topic:
Community
SubTopic:
Apple Developers
I want to limit my child's phone usage at night by allowing them to scan a QR code to enforce app limitations via ScreenTime.
When they scan the QR code, I'm still unable to prevent them from accessing the Phone, Messages, and Camera app via ScreenTime.
Is there a way I can block or heavily restrict their access to these three apps via ScreenTime?
How do I prevent my child from undoing or evading the ScreenTime enforcement I'm trying to enforce?
I bought my iphone 15 pro a month before this year open box having batter health 96 but now within a month it has dropped to 91. Is this sudden drop normal . And what is the reason for this drop ?
Topic:
Community
SubTopic:
Apple Developers
I download a demo from:https://applepaydemo.apple.com/wallet-extensions
And I run my WalletUIExtention,but it's failed.
This is some key in my info.plist
<key>NSExtensionMainStoryboard</key>
<string>MainInterface</string>
<key>NSExtensionPointIdentifier</key>
<string>com.apple.PassKit.issuer-provisioning.authorization</string>
<key>NSExtensionPrincipalClass</key>
<string>MyAUViewController</string>
But I found that deleting the key: NSExtendesionPrincipalClass or NSExtendeionMainStoryboard in the info.plist file can make it run.
Should I delete the key ? Whitch key ?
This is it alert:
This it's message:
2025-05-06 09:15:02.946890+0800 WalletUIExt[626:13530] Successfully load keyboard extensions
Line: 1 Col:1
2025-05-06 09:15:02.972702+0800 WalletUIExt[626:13597] [xpc.exceptions]<NSXPCConnection: 0x2830c30c0> connection from pid 584
on mach service named com.bank.app.WalletUIExt.viewservice: Exception caught during decoding of received
selector __connectToViewControllerFromRemoteViewController:replyHandler:, dropping incoming message.
Exception:<NSXPCDecoder: Qx12a82bc00> received a message or reply block that is not in the interface of the remote object
(__connectToViewControllerFromRemoteViewController:replyHandler:),
Hi,
I've been trying to debug an issue with my extension. I am able to register the extension on install of my app, can select it under Phone> SMS/Call Reporting. When I touch Report it brings up my view controller, with the sender and message details. I set
let response = ILClassificationResponse(action: .reportJunk)
I've added debug logs throughout my extension and everything looks good.
Now when MobileSMS takes over, I see:
default 23:15:09.837024-0400 MobileSMS response: extension:
error 23:15:09.837328-0400 MobileSMS error reporting SMS response:
default 23:15:09.837387-0400 MobileSMS Finished, invoking didCompleteClassificationRequest
info 23:15:09.837487-0400 MobileSMS didCompleteClassificationRequest -- di
I don't see what the error is, and that last log entry is cut off at "di".
I've confirmed my info.plist, allowed domains, aasa, and my remote API is not touched.
Any advice?
Xcode 16.3
Testing on iPhone 16e
iOS 18.4.1
Topic:
Community
SubTopic:
Apple Developers
calling this app store connect API returns 201 created but does not clear purchase history for sandbox account
Since the last Mac software upgrade, PDF's off my IMac are not being printed or aligned correctly.
I have multiple printers and multiple apps and it all prints the same. This is not a "printer driver" issue or an app issue. I am suspecting that this may be an issue since upgrading to Sequonia 15.4.1.
Looking to see if others have had this issue.
Thanks.
Topic:
Community
SubTopic:
Apple Developers