Search results for

“file uri scheme”

81,708 results found

Post

Replies

Boosts

Views

Activity

Reply to iPhone 17 Pro on iOS 26.3 stays unavailable in xcrun devicectl list devices even with Xcode 26.4 beta 2
@TE2026, thanks for filing that report. Would you mind also opening a code-level support request so that I can discuss the situation with your particular Mac directly with you? We found some useful insights in the logs you attached, but they're potentially really specific to you instead of being broadly useful to the community. — Ed Ford,  DTS Engineer
3w
Reply to Please, Apple. I am begging you. Fix the broken Text-To-Speech in macOS
Hello, I apologize for the issues you're hitting with Voice Control, these definitely sound like real bugs. When you get a chance, could you please paste the Feedback Report IDs for the bugs you've filed? We are already aware of some of the bugs you've mentioned, but if you can forward the report IDs here, I can ensure we track those as well, so that you are notified when the bugs are fixed in a future release! Thank you for taking the time to report these issues!
3w
Reply to Increase Contrast reduces List selection contrast in dark appearance in SwiftUI NavigationSplitView
For UIKit, isDarkerSystemColorsEnabled indicates whether Increase Contrast is active. To receive updates when this setting changes, observe darkerSystemColorsStatusDidChangeNotification. For AppKit, the accessibilityDisplayShouldIncreaseContrast property indicates if a high-contrast user interface should be presented. Apps can register accessibilityDisplayOptionsDidChangeNotification to respond to changes in this setting Lastly, SwiftUI has colorSchemeContrast, an environment value that provides information on whether standard or increased contrast applies to a view. SwiftUI automatically updates this value when the contrast changes, redrawing views that depend on it. I encourage you to share your workarounds here, as well as file separate bug reports against each app that displays incorrectly. Once complete, post those FB numbers in this thread and I will make sure they get the correct eyes on them. Thank you.  Travis
Topic: UI Frameworks SubTopic: SwiftUI Tags:
3w
Is it possible to download or copy the iOS SDK for Xcode 26.1 using command-line tools? If so, how?
I have Xcode 26.1.1 (installed on a Mac Mini with Sequoia 15.7.2), which was installed from the Universal .xip file available from the Apple Developer site. This file is 2.7Gb. When Xcode is run, there is a menu item at Settings -> Components, and the top section Platform Support includes an option to Get the iOS SDK, which is an additional 10.3Gb download.[1][2] I would like to either use command-line tools to obtain this iOS SDK component, or find where the downloaded package or its contents are installed on this Mac. This Apple Documentation some examples of using command-line tools to download components for Xcode. However, there is no specific documentation on how to separately download the iOS SDK. It seems that if possible, it could be done with xcodebuild -downloadComponent, however I have tried a number of likely component names (ios, ios_sdk, ios26.1, ios_sdk26.1, iphoneos, iphoneos_sdk, iphoneos_sdk26.1), and none are valid. Does anyone know either where the SDK download can be
3
0
101
3w
Reply to Family Controls entitlement stuck in “Submitted” for ShieldAction extension
@ohadh123 he remaining request is for a ShieldAction extension, which handles button taps from the shield UI.This entitlement is currently blocking our business's beta testing, so we’re trying to understand whether this is just normal queue delay or if the request might be stuck. Please file a code-level support request including your Team ID for assistance.
Topic: App & System Services SubTopic: General Tags:
3w
Reply to Family Controls Request Form
@lateef Our app is almost ready to launch and this capability is critical for us. Both the main app and an extension depend on Family Controls, so we’re currently blocked from moving forward. Did you also submit a separate request for the extension? If you didn't, please file one for your extension. For more information, see Requesting the Family Controls entitlement .
Topic: Code Signing SubTopic: Entitlements Tags:
3w
Reply to SwiftData Models and SortDesc. Only Work in One Swift File
I saw this post, but have not found anything there about the one file works, separate files crashes aspect. So I submitted a post. But in general yes, it is also about sorting on optional nested relationships. @nilsn26: Thanks for your feedback report and confirmation. I don't have a clear answer about why putting the models and the sort logic in a same Swift file avoids the crash either, but I think the technical nature here is that KeyPath.appending can't forward optionality, which is a known issue under the investigation of the Swift team. Best, —— Ziqiao Chen  Worldwide Developer Relations.
3w
Reply to FileManager.replaceItemAt(_:withItemAt:) fails sporadically on ubiquitous items
What's the best way of being careful about this, or do you just mean by using the item replacement directory where possible? As far as I know, there are only two ways of getting a temp directory: Everything you've described sounds like you're on the right track. The big thing is just not making assumption about the relationship between directories (/tmp/ and home are on the same volume) or capabilities (home directories are ALWAYS on volumes that support cloning). The killer here is the long tail, as there are just SO many different edge cases. LibZip is much faster on a volume that supports cloning Interesting. Are you primarily editing the contents of the zip file (so you end up modifying the data inside, but don't really change it's overall size or structure)? Cloning is a huge help if you can clone the contents and then modify but if your modifications end up changing the fundamental contents, then I wouldn't expect the difference to be nearly as large. At large scale, this eventually devolves to
Topic: App & System Services SubTopic: Core OS Tags:
3w
Reply to DriverKit entitlement policy clarification for development purposes
A few brief clarifications and comments: I am seeking clarification on whether the various driverkit entitlement families (com.apple.developer.driverkit.family.*) are available for development on my local Mac without requesting entitlements from Apple. Making the more explicit, they Development Only entitlement variants do two things: They match against a VERY broad hardware configuration, basically letting you match any hardware. Their ONLY available to Development signed builds. Note that the second criteria heavily restricts distribution, as development builds will ONLY run on machines which were registered with your developer account at the point the signing profile was generated. This is largely invisible when using automatic signing (Xcode will just generate a new profile), but can be easy to overlook with manual signing. At WWDC2022 Apple stated that In MacOS... In fact, all DriverKit family entitlements are now available to use for development. On these very forums, Eskimo himself also suggested this
Topic: Code Signing SubTopic: Entitlements Tags:
3w
Reply to iPhone 17 Pro on iOS 26.3 stays unavailable in xcrun devicectl list devices even with Xcode 26.4 beta 2
@TE2026, thanks for filing that report. Would you mind also opening a code-level support request so that I can discuss the situation with your particular Mac directly with you? We found some useful insights in the logs you attached, but they're potentially really specific to you instead of being broadly useful to the community. — Ed Ford,  DTS Engineer
Replies
Boosts
Views
Activity
3w
Reply to Please, Apple. I am begging you. Fix the broken Text-To-Speech in macOS
Hello, I apologize for the issues you're hitting with Voice Control, these definitely sound like real bugs. When you get a chance, could you please paste the Feedback Report IDs for the bugs you've filed? We are already aware of some of the bugs you've mentioned, but if you can forward the report IDs here, I can ensure we track those as well, so that you are notified when the bugs are fixed in a future release! Thank you for taking the time to report these issues!
Replies
Boosts
Views
Activity
3w
Reply to Increase Contrast reduces List selection contrast in dark appearance in SwiftUI NavigationSplitView
For UIKit, isDarkerSystemColorsEnabled indicates whether Increase Contrast is active. To receive updates when this setting changes, observe darkerSystemColorsStatusDidChangeNotification. For AppKit, the accessibilityDisplayShouldIncreaseContrast property indicates if a high-contrast user interface should be presented. Apps can register accessibilityDisplayOptionsDidChangeNotification to respond to changes in this setting Lastly, SwiftUI has colorSchemeContrast, an environment value that provides information on whether standard or increased contrast applies to a view. SwiftUI automatically updates this value when the contrast changes, redrawing views that depend on it. I encourage you to share your workarounds here, as well as file separate bug reports against each app that displays incorrectly. Once complete, post those FB numbers in this thread and I will make sure they get the correct eyes on them. Thank you.  Travis
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
3w
Reply to Xcode 26.4 Beta 2 - Missing Capability, Family Controls App & Website Usage
@_lilpit and @Russ_T, Thank you for filing these Feedback reports. We are looking into them.
Replies
Boosts
Views
Activity
3w
Reply to Family Controls Entitlement for Extension Identifier
@e5johnson Please file a code-level support request including your Team ID for assistance.
Replies
Boosts
Views
Activity
3w
Is it possible to download or copy the iOS SDK for Xcode 26.1 using command-line tools? If so, how?
I have Xcode 26.1.1 (installed on a Mac Mini with Sequoia 15.7.2), which was installed from the Universal .xip file available from the Apple Developer site. This file is 2.7Gb. When Xcode is run, there is a menu item at Settings -> Components, and the top section Platform Support includes an option to Get the iOS SDK, which is an additional 10.3Gb download.[1][2] I would like to either use command-line tools to obtain this iOS SDK component, or find where the downloaded package or its contents are installed on this Mac. This Apple Documentation some examples of using command-line tools to download components for Xcode. However, there is no specific documentation on how to separately download the iOS SDK. It seems that if possible, it could be done with xcodebuild -downloadComponent, however I have tried a number of likely component names (ios, ios_sdk, ios26.1, ios_sdk26.1, iphoneos, iphoneos_sdk, iphoneos_sdk26.1), and none are valid. Does anyone know either where the SDK download can be
Replies
3
Boosts
0
Views
101
Activity
3w
Reply to Family Controls entitlement stuck in “Submitted” for ShieldAction extension
@ohadh123 he remaining request is for a ShieldAction extension, which handles button taps from the shield UI.This entitlement is currently blocking our business's beta testing, so we’re trying to understand whether this is just normal queue delay or if the request might be stuck. Please file a code-level support request including your Team ID for assistance.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
3w
Reply to Family Controls Request Form
@lateef Our app is almost ready to launch and this capability is critical for us. Both the main app and an extension depend on Family Controls, so we’re currently blocked from moving forward. Did you also submit a separate request for the extension? If you didn't, please file one for your extension. For more information, see Requesting the Family Controls entitlement .
Topic: Code Signing SubTopic: Entitlements Tags:
Replies
Boosts
Views
Activity
3w
Reply to Family Controls Request Form
Please file a code-level support request including your Team ID for assistance.
Topic: Code Signing SubTopic: Entitlements Tags:
Replies
Boosts
Views
Activity
3w
Reply to Unable to install Metal toolchain through Xcode Cloud
I'm glad to hear that helped, @rozanski. @DaeLee, let us know here once you've got that bug report filed and its number so we can look into your situation. — Ed Ford,  DTS Engineer
Replies
Boosts
Views
Activity
3w
Reply to Family Controls entitlement request submitted on March 9, 2026 — no response or status update
Please file a code-level support request including your Team ID for assistance.
Topic: Code Signing SubTopic: Entitlements Tags:
Replies
Boosts
Views
Activity
3w
Reply to SwiftData Models and SortDesc. Only Work in One Swift File
I saw this post, but have not found anything there about the one file works, separate files crashes aspect. So I submitted a post. But in general yes, it is also about sorting on optional nested relationships. @nilsn26: Thanks for your feedback report and confirmation. I don't have a clear answer about why putting the models and the sort logic in a same Swift file avoids the crash either, but I think the technical nature here is that KeyPath.appending can't forward optionality, which is a known issue under the investigation of the Swift team. Best, —— Ziqiao Chen  Worldwide Developer Relations.
Replies
Boosts
Views
Activity
3w
Reply to FileManager.replaceItemAt(_:withItemAt:) fails sporadically on ubiquitous items
What's the best way of being careful about this, or do you just mean by using the item replacement directory where possible? As far as I know, there are only two ways of getting a temp directory: Everything you've described sounds like you're on the right track. The big thing is just not making assumption about the relationship between directories (/tmp/ and home are on the same volume) or capabilities (home directories are ALWAYS on volumes that support cloning). The killer here is the long tail, as there are just SO many different edge cases. LibZip is much faster on a volume that supports cloning Interesting. Are you primarily editing the contents of the zip file (so you end up modifying the data inside, but don't really change it's overall size or structure)? Cloning is a huge help if you can clone the contents and then modify but if your modifications end up changing the fundamental contents, then I wouldn't expect the difference to be nearly as large. At large scale, this eventually devolves to
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
3w
Reply to DriverKit entitlement policy clarification for development purposes
A few brief clarifications and comments: I am seeking clarification on whether the various driverkit entitlement families (com.apple.developer.driverkit.family.*) are available for development on my local Mac without requesting entitlements from Apple. Making the more explicit, they Development Only entitlement variants do two things: They match against a VERY broad hardware configuration, basically letting you match any hardware. Their ONLY available to Development signed builds. Note that the second criteria heavily restricts distribution, as development builds will ONLY run on machines which were registered with your developer account at the point the signing profile was generated. This is largely invisible when using automatic signing (Xcode will just generate a new profile), but can be easy to overlook with manual signing. At WWDC2022 Apple stated that In MacOS... In fact, all DriverKit family entitlements are now available to use for development. On these very forums, Eskimo himself also suggested this
Topic: Code Signing SubTopic: Entitlements Tags:
Replies
Boosts
Views
Activity
3w
Reply to Xcode Cloud: CI.SCM.Error.RepositoryNotFound with GitHub Organization (401 Unauthorized)
Hi, We need some more diagnostics to be able to help you resolve the issue. Could you please file a feedback request for this and post the feedback number here? You can file Xcode Cloud specific feedback using these steps. Thanks
Replies
Boosts
Views
Activity
3w