Search results for

“file uri scheme”

81,710 results found

Post

Replies

Boosts

Views

Activity

Reply to xCode 6.4 scheme names
Also, as the original poster points out, the scheme now shows the device (iPad Air) and the simulator identifier (i.e.: 085BD3A4-CC9E-4717-AF2F-E08106BB7A88) There is no reference to the iOS of the scheme, so it's just hit-and-miss as to what iOS each scheme tests. That makes it difficult - to say the least - to test an app against all devices/iOSs.
Jul ’15
Reply to Trying to load a cr2 file
iOS is case sensitive..CR2 is not the same as .cr2, .Cr2, .cR2, etc.Be sure to match the file name case with the image name used in your code. Might want to get into the habit of only/always using lower case, as an example, just to avoid such issues in the future. Whichever scheme you adopt, be consistent.
Topic: Programming Languages SubTopic: Swift Tags:
Aug ’17
Reply to Run Terminal Command in Xcode
Yes, I tried doing that. Both through Build Phases and under Schemes by creating Post-Run/Post-Build Scripts. Neither of the tries worked for me.Anyways, I think this will not work as I will have to change the CMake for the project to access the shared object file to run even through the terminal. Thank you so much for taking time out and replying to my issue.RegardsJayam Patel
Feb ’18
Reply to Citrix Workspace App GlobalSign Root CA
I have seen this issue on other versions on macOS as well; I don't think this is specific to this version. You will need to trust the certificate when on the site click the padlock. Show the certificate in the details you should see the CA Issuers, click on the URI. (This will ensure the correct cert required is downloaded) it could be the ones in your keychain may vary. You can then add this certificate into keychain.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’19
Reply to Opening the Extension menu in the System Preferences
Quinn's should be the accepted answer (sorry, this should've been a comment on that—I clicked the wrong button and don't see how to fix it). @eskimo Quinn, Any chance you could push to get the x-apple.systempreferences URL scheme properly documented? It seems like something that user-friendly apps need to be able to do, and people are doing it anyway, so it would be great to have it documented explicitly as stable API somewhere outside of a header file (which only gives two specific examples for Full Disk Access, which is not the location desired here). I understand that things tend to move around in System Settings, but it seems like some needs to commit to supporting a scheme or other API that will allow apps to direct people to where they need to go.
Topic: App & System Services SubTopic: Core OS Tags:
May ’24
Reply to XCode 26.2 not running UItests in parallel in subsequent test runs
Adding more information on this problem. The UI tests are in a separate project in the same workspace. We split this way to reduce the amount of conflicts in the project file since the xcuitests are written by a separate team and the app project gets so many updates per day. I noticed that if I add the UI test target in the app scheme without using test plans I can run the ui tests in parallel many times in a row, but if I convert to test plans or if I keep the UI tests in a separate scheme using test plans I can run the ui tests in parallel only once and then I get this error on the subsequent tries. The only way around it is to delete the simulator and recreate it.
3w
Reply to xcodebuild Apple Watch - iOS 16.1/wachOS 9.1 - fails
UPD Everything works fine when we use -target option for xcododebuild command line arguments instead of -scheme, but could not use option due to project -target. The problem is in the scheme configuration or devices visibility for scheme, or both Also, it is working when I use generic destination: xcodebuild -project MyApp.xcodeproj -scheme 'MyApp WatchKit App' -destination generic/platform=watchOS build command I used: xcodebuild -workspace MyApp.xcworkspace -scheme 'MyApp WatchKit App' -destination 'platform=watchOS,id=Watch's ID' And I see this error: (null) needs to connect to determine its availability. Check the connection between the device and its companion iPhone, and the connection between the iPhone and Xcode. Both devices may also need to be restarted and unlocked.``` P.S. Restarting and unlocking doesn't help
Topic: App & System Services SubTopic: Core OS Tags:
Nov ’22
Reply to ASWebAuthenticationSession with Universal link never dismiss the sign-in screen
UniversalLink and redirectURI are different things. OAuth standard protocol assumes that once the authentication part on the ASWebAuthenticationSession panel is completed successfully, the backend will redirect you to the URI indicated into the redirectURI parameter you used to instruct the request for the ASWebAuthenticationSession. If this doesn't happen for any reason (like a 302 on the redirectURI), then the ASWebAuthenticationSession isn't completed and your call back is never called.
Topic: Programming Languages SubTopic: Swift Tags:
Feb ’23
Losing texture when converting DAE files to SCN files
I have an app where I have a bunch of dae files stored online. They're optimized for iOS usingxcrun scntool --convert file.dae --format c3d --output file_optimized.dae --force-y-upI download both the model and the textures to have the same file structure as on my mac. Which ends up like this:modelName/ model/ model.dae textures/ textures.png (All required texture files are in here)However, when I load them into my iOS app, they show up fully white with the following error:[SceneKit] Error: Failed loading : <C3DImage 0x1c00f6900 src:file:///path/to/local/file/on/my/mac/../textures/diffuse.png [0.000000x0.000000]>The files work fine on my mac, both in Preview and in Xcode, and they show the URI to the textures like this:../textures/diffuse.pngHow would I fix this?
2
0
3.2k
Dec ’17
Reply to WKWebView Request headers in redirections/links
If it's a critical need for your app and you have tight control over the content loaded, you can use a custom scheme with WKURLSchemeHandler to achieve the same effect. There's no way to do this for genera http(s) loads right now. Please file a request with Feedback Assistant with what you'd be using this for to help us prioritize.
Topic: Safari & Web SubTopic: General Tags:
Jun ’20
Reply to xCode 6.4 scheme names
Also, as the original poster points out, the scheme now shows the device (iPad Air) and the simulator identifier (i.e.: 085BD3A4-CC9E-4717-AF2F-E08106BB7A88) There is no reference to the iOS of the scheme, so it's just hit-and-miss as to what iOS each scheme tests. That makes it difficult - to say the least - to test an app against all devices/iOSs.
Replies
Boosts
Views
Activity
Jul ’15
Reply to Device denied the launch request error
I fixed this by going to Product-Scheme-Edit scheme select RUN, I had arguments passed on launch check box ticked, but were empty, so unticked the box. hey presto, my app would run on simulator. Solved for me.
Replies
Boosts
Views
Activity
Mar ’21
Reply to On Xcode13.0,my Metal-app successfully run on independent or in Xcode-Instrument, but crash on debugging,why?
Hello Benjamin, the workaround I found is to disable GPU Frame Capture. Menu Product | Scheme | Edit Scheme. under the Options tab, set GPU Frame Capture to disabled Regards David
Replies
Boosts
Views
Activity
Nov ’21
Reply to Xcode Cloud: A scheme named "x" does not exist in x.xcodeproj
Well, it happened for me after renaming the project. It is just a wrong setting in the Appstoreconnect Xcode Cloud tab. For me it was in the Actions Archive - IOS section, Scheme dropdown. I have selected the correct scheme and build succeeded.
Replies
Boosts
Views
Activity
Oct ’23
Reply to Trying to load a cr2 file
iOS is case sensitive..CR2 is not the same as .cr2, .Cr2, .cR2, etc.Be sure to match the file name case with the image name used in your code. Might want to get into the habit of only/always using lower case, as an example, just to avoid such issues in the future. Whichever scheme you adopt, be consistent.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Aug ’17
Reply to Run Terminal Command in Xcode
Yes, I tried doing that. Both through Build Phases and under Schemes by creating Post-Run/Post-Build Scripts. Neither of the tries worked for me.Anyways, I think this will not work as I will have to change the CMake for the project to access the shared object file to run even through the terminal. Thank you so much for taking time out and replying to my issue.RegardsJayam Patel
Replies
Boosts
Views
Activity
Feb ’18
Reply to Xcode 15.3 and iOS 17.4 generate a CPU spike when launching the app
I even do not get an error by the Thread Performance Checker but keeping the option enabled in Xcode 15.3 results in horrible performance of the app during the full utilization of the app (I'm making intensive use of background threads). The only option currently possible is deactivate this feature in Debug Scheme. (Filed bug report: FB13681777)
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Mar ’24
Reply to Citrix Workspace App GlobalSign Root CA
I have seen this issue on other versions on macOS as well; I don't think this is specific to this version. You will need to trust the certificate when on the site click the padlock. Show the certificate in the details you should see the CA Issuers, click on the URI. (This will ensure the correct cert required is downloaded) it could be the ones in your keychain may vary. You can then add this certificate into keychain.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’19
Reply to Opening the Extension menu in the System Preferences
Quinn's should be the accepted answer (sorry, this should've been a comment on that—I clicked the wrong button and don't see how to fix it). @eskimo Quinn, Any chance you could push to get the x-apple.systempreferences URL scheme properly documented? It seems like something that user-friendly apps need to be able to do, and people are doing it anyway, so it would be great to have it documented explicitly as stable API somewhere outside of a header file (which only gives two specific examples for Full Disk Access, which is not the location desired here). I understand that things tend to move around in System Settings, but it seems like some needs to commit to supporting a scheme or other API that will allow apps to direct people to where they need to go.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
May ’24
Reply to XCode 26.2 not running UItests in parallel in subsequent test runs
Adding more information on this problem. The UI tests are in a separate project in the same workspace. We split this way to reduce the amount of conflicts in the project file since the xcuitests are written by a separate team and the app project gets so many updates per day. I noticed that if I add the UI test target in the app scheme without using test plans I can run the ui tests in parallel many times in a row, but if I convert to test plans or if I keep the UI tests in a separate scheme using test plans I can run the ui tests in parallel only once and then I get this error on the subsequent tries. The only way around it is to delete the simulator and recreate it.
Replies
Boosts
Views
Activity
3w
Reply to Xcode server bot not running test cases ?
I had a similar problem. The fix for me was making sure that the local branch was up to date with remote. It seemed that if I had unstaged changes to my schemes, xcode would skip the tests, or complain that the scheme could not be found. Best of luck!
Replies
Boosts
Views
Activity
Jul ’17
Reply to xcodebuild Apple Watch - iOS 16.1/wachOS 9.1 - fails
UPD Everything works fine when we use -target option for xcododebuild command line arguments instead of -scheme, but could not use option due to project -target. The problem is in the scheme configuration or devices visibility for scheme, or both Also, it is working when I use generic destination: xcodebuild -project MyApp.xcodeproj -scheme 'MyApp WatchKit App' -destination generic/platform=watchOS build command I used: xcodebuild -workspace MyApp.xcworkspace -scheme 'MyApp WatchKit App' -destination 'platform=watchOS,id=Watch's ID' And I see this error: (null) needs to connect to determine its availability. Check the connection between the device and its companion iPhone, and the connection between the iPhone and Xcode. Both devices may also need to be restarted and unlocked.``` P.S. Restarting and unlocking doesn't help
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Nov ’22
Reply to ASWebAuthenticationSession with Universal link never dismiss the sign-in screen
UniversalLink and redirectURI are different things. OAuth standard protocol assumes that once the authentication part on the ASWebAuthenticationSession panel is completed successfully, the backend will redirect you to the URI indicated into the redirectURI parameter you used to instruct the request for the ASWebAuthenticationSession. If this doesn't happen for any reason (like a 302 on the redirectURI), then the ASWebAuthenticationSession isn't completed and your call back is never called.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Feb ’23
Losing texture when converting DAE files to SCN files
I have an app where I have a bunch of dae files stored online. They're optimized for iOS usingxcrun scntool --convert file.dae --format c3d --output file_optimized.dae --force-y-upI download both the model and the textures to have the same file structure as on my mac. Which ends up like this:modelName/ model/ model.dae textures/ textures.png (All required texture files are in here)However, when I load them into my iOS app, they show up fully white with the following error:[SceneKit] Error: Failed loading : <C3DImage 0x1c00f6900 src:file:///path/to/local/file/on/my/mac/../textures/diffuse.png [0.000000x0.000000]>The files work fine on my mac, both in Preview and in Xcode, and they show the URI to the textures like this:../textures/diffuse.pngHow would I fix this?
Replies
2
Boosts
0
Views
3.2k
Activity
Dec ’17
Reply to WKWebView Request headers in redirections/links
If it's a critical need for your app and you have tight control over the content loaded, you can use a custom scheme with WKURLSchemeHandler to achieve the same effect. There's no way to do this for genera http(s) loads right now. Please file a request with Feedback Assistant with what you'd be using this for to help us prioritize.
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’20