Search results for

file uri scheme

78,591 results found

Post

Replies

Boosts

Views

Activity

Notarization taking hours??
I started a notarization run a few hours ago. (and used --wait) Conducting pre-submission checks for Metrix Installer.dmg and initiating connection to the Apple notary service... Submission ID received id: dd77be4c-0cb6-4913-a846-d4025ede37fd Successfully uploaded file id: dd77be4c-0cb6-4913-a846-d4025ede37fd path: /Users/johnluss/Work/Metrix Installer.dmg Waiting for processing to complete. Current status: In Progress................................................................................................................................. I finally ctrl-c out of it (PAGES of ....) and tried getting the log Submission log is not yet available or submissionId does not exist id: dd77be4c-0cb6-4913-a846-d4025ede37fd The Apple System Status page shows all servers up and running. Any suggestions on what might be going wrong?
7
0
3.2k
2w
Reply to iOS 26 SwiftData crash does not happen in iOS 16
Yeah, it can be that changes on the framework unintentionally trigger the crash, which will be a regression; it can also be the framework intentionally became stricter, which triggers the crash that should have been triggered in the previous version. Given that you have confirmed your model schema matches the JSON schema, I think it is more like the former, and so would suggest that you file a feedback report. It will be a great help if you can attach a minimal sample that reproduces the issue though to your feedback report, and you can create that by following the steps I mentioned. Best, —— Ziqiao Chen  Worldwide Developer Relations.
3w
iOS 26 SwiftData crash does not happen in iOS 16
I have a simple app that makes an HTTPS call to gather some JSON which I then parse and add to my SwiftData database. The app then uses a simple @Query in a view to get the data into a list. on iOS 16 this works fine. No problems. But the same code on iOS 26 (targeting iOS 18.5) crashes after about 15 seconds of idle time after the list is populated. The error message is: Could not cast value of type '__NSCFNumber' (0x1f31ee568) to 'NSString' (0x1f31ec718). and occurs when trying to access ANY property of the list. I have a stripped down version of the app that shows the crash available. To replicate the issue: open the project in Xcode 26 target any iOS 26 device or simulator compile and run the project. after the list is displayed, wait about 15 seconds and the app crashes. It is also of note that if you try to run the app again, it will crash immediately, unless you delete the app from the device. Any help on this would be appreciated. Feedback number FB20295815 includes .zip file Below is the bas
4
0
167
3w
Reply to Can I save data to an App Group container from a ILClassificationRequest classifier?
I haven't been able to find much in the documentation on whether this behavior is enforced in classificationResponse handlers. Apple's barebones page on SMS and Call Spam Reporting[1] says the system always deletes your extension’s container after your extension terminates, but that doesn't answer whether you can write to an App Group container. No, you cannot. This could have been more directly stated, but this is basically implementing one of the strongest possible restrictions* around your extension. For comparison, the filter data provider extension, which can examine the contents of all network traffic, is allowed to write to its data container but cannot write ANYWHERE else on the system (nor can its container be read). ILClassificationUIExtensionViewController takes that level of protection one step further and doesn't even preserve your app’s own container. *We could have simply blocked writing, but I suspect container writing was allowed to provide a bit more implementation flexibility. For example,
Topic: App & System Services SubTopic: Core OS Tags:
3w
Will Apple Reject Apps That Read MacBook Lid-Angle Sensor via Private APIs?
Hey I’m working on a macOS app that wants to detect the MacBook lid / hinge angle (i.e. how far the screen is open) by directly reading the internal sensor via HID / IOKit (a private / undocumented API). I came across this project: LidAngleSensor — GitHub: https://github.com/samhenrigold/LidAngleSensor?tab=readme-ov-file Before investing too much effort, I’d like to ask the community: Has anyone succeeded in getting such an app accepted on the Mac App Store when it includes sensor-level, private API access like this? What were the reviewer feedback or rejection reasons (if any)? Are there documented cases (positive or negative) where Apple approved or rejected apps for accessing non-public hardware sensors? What’s the risk of getting banned or permanently rejected for integrating this kind of functionality? If you have direct experience (whether it passed or failed), I’d love to hear your stories, strategies, or pointers. Thanks in advance!
1
0
65
3w
Reply to Guidance / Documentation on iOS 18.6.1 Blood Oxygen Saturation
Thanks for bringing up the potential policy problem. I indeed can't speak for the App Review team, and so would suggest that you contact App Review(login required). I don't see an API that allows you to tell if an Apple Watch is impacted. I agree that a separate syncing system is far from ideal, and yes, filing a feedback report is the way to go in this situation. Best, —— Ziqiao Chen  Worldwide Developer Relations.
3w
Reply to BGContinuedProcessingTask launchHandler invocation
The UILabel text and task's progress is updated once every 1 billion nanoseconds (1 second). I'm afraid Friday was a very busy day, and yes, I did misread that. (notably you're manipulating UIKit from a background thread) I don't believe that's the case. Setting breakpoints before the while block, in it, and after indicates it's on com.apple.main-thread. Hmm... I guess Task is keeping you on the main thread based on your entry point. I'm not a huge fan of that implicit behavior, but you're right that this should work. Moving to the original problem: The indeterminate progress bar is visible (from the get-go and throughout the operation) even when the app stays in the foreground the whole time on iPad. I would try: Set totalUnitCount before you set completedUnitCount. I'm not sure why this would matter, but both operations kick off a KVO cycle, and setting completedUnitCount first means you're sending 0/0-> indeterminate while totalUnitCount first means you’re sending 0/100-> a valid start point. Directl
3w
NVMe External Disk working in MacOS Sequoia But not in Tahoe
Hi, I have been using external NVMe disk since March 2025 with my Mac M1 1TB until recently couple of days agao I updated Mac OS to Tahoe from Sequpoia 15.6. Now Mac OS Tahoe is disconnecting my NVMe automatically saying please eject the disc before disconnecting and suddenly after an hour it reconnects. Right now I have reinstall Mac OS Sequoia and My external NVMe disk is working again. This post is for Mac OS developers to check for APFS drivers on Mac Tahoe as they are messing up with external NVMe SSD. I dont know about others brand of NVMe I am using Transcend inclosure with transcend NVMe 2TB SSD hard disk. Kindly please check as its not NVMe issue its and OS issue. If it was NVMe issue my SSD should also not work with Sequoia but as it is working with Sequoia so it has to be something with Tahoe OS. Kindly review your code about APFS drivers or thunderbold USB C drivers or may be something else linked to APFS file system. I hope this post reaches you and you guys can consider it as help ful.
1
0
172
3w
Reply to iOS 26 23A341 - CallDirectory does not block calls anymore
Indeed, I used test numbers that I called previously. Can you update the doc? Please file a bug asking the documentation to be updated and post the bug number back here. Having said that: I did not see this information anywhere. ...while the behavior above is new in iOS 26, there have ALWAYS been exceptions that would cause us to bypass a call directory entry. Notably, the user direct contact takes precedence over CXCallDirectory. This has always been the case but has never been formally documented as such. __ Kevin Elliott DTS Engineer, CoreOS/Hardware
Topic: App & System Services SubTopic: General Tags:
3w
Reply to tvOS 26 file corruption issues?
Has any one come across file corruption issues with tvOS 26? This is the first time I've heard of this. Can you provide more details about what's actually going on (file type, how you're accessing it, what damage has occurred in the file, etc.)? __ Kevin Elliott DTS Engineer, CoreOS/Hardware
Topic: App & System Services SubTopic: Core OS Tags:
3w
iOS Message Filter Extension - deferQueryRequestToNetwork(completion:) error
iOS Message Filter Extension - deferQueryRequestToNetwork(completion:) error I made a test app using the iOS App template and added a target using the Message Filter Extension template which invokes deferQueryRequestToNetwork(completion:) when receiving an SMS. The app and the extension have same Associated Domains Capabilities with messagefilter pointing to a server which receives query requests and returns proper responses. The extension has the ILMessageFilterExtensionNetworkURL key in Info.plist file which specifies the server URL. deferQueryRequestToNetwork(completion:) throws a com.apple.calls.messagefilter error which reads Extension's containing app (appID ) unauthorized to defer requests to host
4
0
619
3w