Search results for

“file uri scheme”

81,749 results found

Post

Replies

Boosts

Views

Activity

After Swift3 conversion: Several compiler errors on one scheme only (in XCode 8)
After Swift 3 conversion I am experiencing a frustrating issue. I have two schemes in my project which both use the same target. On one scheme I can run tests, however on the other scheme I get the following 5 errors:`mach-o linker`, `lipo error`, `ditto error`, `can not parse debug map`, and `segmentation fault 11`Based on various things I found online I have tried:- changing build active architecture to NO / YES- changing debug information format to DWARF / DWARF with dSYM File- hard coded the bridging header path- diffed the Bridging Header (it's the same as before Swift 3)- deleted derived data folder (hundreds of times)- deleted cache folder (hundreds of times)- deep cleaned (hundreds of times)- restarted Xcode- restarted the computer itself- set rwx permissions on the project directory- had other people check my podfile to make sure it's fine- checked target membership of every file in the Tests and KIF targets- Enable Bitcode is already set to No
0
0
393
Sep ’16
Reply to canOpenURL returned an incorrect result in iOS 15 run in Xcode13
I filed a bug report for FB9447186. Thanks. Reading your bug report it seems that you’ve determined that there’s a threshold of 50 URL schemes. Is that right? Honestly, I don’t know what’s up with that. My suggestion is that you open a DTS tech support incident and talk to DTS’s expert in this field. At a minimum, we should be able to find out whether this 50 URL scheme limit is deliberate or not. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: UI Frameworks SubTopic: UIKit Tags:
Sep ’21
Reply to Skip the "Do you want to open ?" Modal
Thank you for sharing your post. To ensure seamless navigation from your Angular web application to your native iOS app via a webclip without user interaction or prompts, Universal Links may be a suitable solution. However, it’s important to note that Apple imposes restrictions on automatic launches of native apps from web content for security reasons. Regarding your mention of using URL Schemes instead of Universal Links, I would like to understand the reasons behind your decision to discontinue using Universal Links? Universal Links Universal Links are designed to open your app directly if it's installed, or fall back to a website if not. This is the most seamless user experience available without dealing with URL schemes and prompts. Ensure your app's entitlements and Apple Developer account are set up correctly to handle Universal Links. If the conditions you mentioned can be checked via deep link parameters, include these in your Universal Link setup. Custom URL Schemes: If Uni
Topic: Community SubTopic: Apple Developers Tags:
Apr ’25
Reply to UI Testing target locale and region settings
Is not via XCODE?XCODE->Product->Scheme->Edit Scheme->Run (left menu)->Options (Tab)->Application Language = English (I could setup to Portuguese (Brazil), but I intend to use the language English.XCODE->Product->Scheme->Edit Scheme->Run (left menu)->Options (Tab)->Application Region = Brazil (here I intend to use Brazillian's regional settings -> 1.200,43)
Apr ’20
Reply to Where is comment syntax defined?
The reason is that anytime you use a non-approved link in your post; it will be moderated (eventually) by Apple. In reality, I've never seen one get posted. To be sure that any URI are not interpreted as links just enclose the link in parenthesis and remove the (http: //) header.
Aug ’15
Reply to How to use safaridriver from safari technology preview in selenium grid
We are using: Dictionary<string, object> remoteSafariOptions = new Dictionary<string, object>(); remoteSafariOptions[technologyPreview] = true; safariOptions = new SafariOptions(); safariOptions.AddAdditionalCapability(safari.options, remoteSafariOptions); browser = new RemoteWebDriver(new Uri(seleniumRemoteGridUrl), safariOptions.ToCapabilities());which works fine.
Topic: Safari & Web SubTopic: General Tags:
Sep ’17
Reply to How can I trigger the Full Disk Access prompt to write to a raw block device?
[quote='777577021, coolaj86, /thread/777577, /profile/coolaj86'] I'm not a Swift coder, but I'd like to be [/quote] Well, you’ve chosen a hard place to start |-: I have a lot to say about this but I want to start by addressing two specific comments: [quote='777577021, coolaj86, /thread/777577, /profile/coolaj86'] I did change Sandbox App to NO in MyApp.entitlements [/quote] Don’t do that. If you don’t want to be sandboxed, remove the App Sandbox capability in the Signing & Capabilities editor. Setting the value to false can cause weird problems (although that’s unlikely to be causing problems for you here). [quote='830567022, coolaj86, /thread/777577?answerId=830567022#830567022, /profile/coolaj86'] using a uri to open system preferences [/quote] That URL scheme changed recently. I have links to docs for it in Supported URL Schemes. [quote='777577021, coolaj86, /thread/777577, /profile/coolaj86'] I always get permission errno 13 (permission denied). [/quote] macOS has multiple l
Topic: App & System Services SubTopic: Core OS Tags:
Mar ’25
Reply to Content Steering Error in Handling Steering Manifest
Thank you for the fast reply! I removed the aws pathway as suggested, but the error remains. I've validated the playlists and verified that I can play the media from both the azure and edge CDNs. In fact, I can switch between the CDNs using content steering as long as both pathway ids are specified in the manifest. For example, using manifest #EXTM3U #EXT-X-CONTENT-STEERING:SERVER-URI=https://example.com/content-steering?switching=true,PATHWAY-ID=azure #EXT-X-STREAM-INF:BANDWIDTH=5605600,RESOLUTION=416x240,CODECS=avc1.64001e,mp4a.40.2,PATHWAY-ID=azure https://azure.com/contentsteering/stream_0/stream.m3u8 #EXT-X-STREAM-INF:BANDWIDTH=5605600,RESOLUTION=416x240,CODECS=avc1.64001e,mp4a.40.2,PATHWAY-ID=edge https://edge.com/contentsteering/stream_0/stream.m3u8 and steering manifest { VERSION: 1, TTL: 10, RELOAD-URI: https://example.com/content-steering?&switching=true, PATHWAY-PRIORITY: [ edge, azure, aws ], PATHWAY-CLONES: [] } (It works with and without aws in the priority list, even thoug
Topic: Media Technologies SubTopic: Streaming Tags:
Dec ’22
AppleWatch send parameter WatchOS App from Url Scheme or Shortcut
I am currently developing an app for Apple Watch. I want to pass a parameter value while calling my Apple Watch app through a shortcut on the Apple Watch. So I thought of url scheme but. I couldn't get this to work on the Apple Watch. So I'm looking for another way. How to create a shortcut that can be executed while passing parameter values to the Apple Watch, In the watchos app, can I call the desired function by receiving the parameter value?
0
0
678
Apr ’23
Sample Partition Scheme driver kext can't load at boot time.
We are implementing a Sample Partition Scheme driver. this is the info.plist IOKitPersonalities SamplePartitionScheme IOKitDebug 0 IOProbeScore 80000 .... IOProviderClass IOMedia IOPropertyMatch Whole our driver match a whole disk IOMedia, If it's our disk, perform read/write on this disk. When we test our driver in macOS12. if the IOMedia is a blank RAW disk, our driver will be loaded at boot time. if the IOMedia has partitions, system partition scheme driver will be loaded at boot time. Pluging in a GUID partition disk on a booted Mac always load our kext. how can our driver match GUID partition disks and load at boot time?
1
0
811
Jan ’22
How to format the start and end time in iOS URL schemes in Shortcuts
I created a shortcut 'Add New Event' on my iPad. I need to automate the start and end time, so I use the iOS shortcuts URL schemes. I asign date variable to the start time and end time. Here's the URL I wrote for a start time 2024-01-01-06:00:00 and end time 2024-01-01-07:00:00 shortcuts://run-shortcut?name=Addevent&input=2024-01-01T06:00:00 I can't figure out how to properly write the end time so the URL will get me open the iOS calendar to create an event with a specified start and end time. I wanted to attach an image of the shortcut I created on iPad, but it won't allow me. You can view the image here. https://drive.google.com/file/d/1PIVAjg9Cta2SQr7eUMEpBSrZJpORVaMK/view?usp=sharing note: I actually just need the end time an hour later than the start time. so if there's a better solution, please feel free to comment.
0
0
628
Jun ’23
Reply to multi language swiftUI app not working
From the screenshot, it looks like you manually created .lproj groups in Xcode. Instead, can you try keeping just one Localizable.strings file and then using the Localizations inspector on the right to vary the file for each language? Xcode will automatically create .lproj folders for you on disk and in the built application. You can then use the Options tab of the scheme editor to run the application in Chinese, Simplified.
Aug ’22
After Swift3 conversion: Several compiler errors on one scheme only (in XCode 8)
After Swift 3 conversion I am experiencing a frustrating issue. I have two schemes in my project which both use the same target. On one scheme I can run tests, however on the other scheme I get the following 5 errors:`mach-o linker`, `lipo error`, `ditto error`, `can not parse debug map`, and `segmentation fault 11`Based on various things I found online I have tried:- changing build active architecture to NO / YES- changing debug information format to DWARF / DWARF with dSYM File- hard coded the bridging header path- diffed the Bridging Header (it's the same as before Swift 3)- deleted derived data folder (hundreds of times)- deleted cache folder (hundreds of times)- deep cleaned (hundreds of times)- restarted Xcode- restarted the computer itself- set rwx permissions on the project directory- had other people check my podfile to make sure it's fine- checked target membership of every file in the Tests and KIF targets- Enable Bitcode is already set to No
Replies
0
Boosts
0
Views
393
Activity
Sep ’16
Reply to canOpenURL returned an incorrect result in iOS 15 run in Xcode13
I filed a bug report for FB9447186. Thanks. Reading your bug report it seems that you’ve determined that there’s a threshold of 50 URL schemes. Is that right? Honestly, I don’t know what’s up with that. My suggestion is that you open a DTS tech support incident and talk to DTS’s expert in this field. At a minimum, we should be able to find out whether this 50 URL scheme limit is deliberate or not. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Sep ’21
Reply to Xcode Cloud: A scheme named "x" does not exist in x.xcodeproj
Seeing the same issue, no visible reason. The scheme clearly exists, project was never renamed, in archive section it has the right scheme selected; though it shows a warning 'The scheme ... may only exist locally...'
Replies
Boosts
Views
Activity
Dec ’23
Reply to Skip the "Do you want to open ?" Modal
Thank you for sharing your post. To ensure seamless navigation from your Angular web application to your native iOS app via a webclip without user interaction or prompts, Universal Links may be a suitable solution. However, it’s important to note that Apple imposes restrictions on automatic launches of native apps from web content for security reasons. Regarding your mention of using URL Schemes instead of Universal Links, I would like to understand the reasons behind your decision to discontinue using Universal Links? Universal Links Universal Links are designed to open your app directly if it's installed, or fall back to a website if not. This is the most seamless user experience available without dealing with URL schemes and prompts. Ensure your app's entitlements and Apple Developer account are set up correctly to handle Universal Links. If the conditions you mentioned can be checked via deep link parameters, include these in your Universal Link setup. Custom URL Schemes: If Uni
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Apr ’25
Reply to UI Testing target locale and region settings
Is not via XCODE?XCODE->Product->Scheme->Edit Scheme->Run (left menu)->Options (Tab)->Application Language = English (I could setup to Portuguese (Brazil), but I intend to use the language English.XCODE->Product->Scheme->Edit Scheme->Run (left menu)->Options (Tab)->Application Region = Brazil (here I intend to use Brazillian's regional settings -> 1.200,43)
Replies
Boosts
Views
Activity
Apr ’20
Reply to Where is comment syntax defined?
The reason is that anytime you use a non-approved link in your post; it will be moderated (eventually) by Apple. In reality, I've never seen one get posted. To be sure that any URI are not interpreted as links just enclose the link in parenthesis and remove the (http: //) header.
Replies
Boosts
Views
Activity
Aug ’15
Reply to How to use safaridriver from safari technology preview in selenium grid
We are using: Dictionary<string, object> remoteSafariOptions = new Dictionary<string, object>(); remoteSafariOptions[technologyPreview] = true; safariOptions = new SafariOptions(); safariOptions.AddAdditionalCapability(safari.options, remoteSafariOptions); browser = new RemoteWebDriver(new Uri(seleniumRemoteGridUrl), safariOptions.ToCapabilities());which works fine.
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’17
Reply to How can I trigger the Full Disk Access prompt to write to a raw block device?
[quote='777577021, coolaj86, /thread/777577, /profile/coolaj86'] I'm not a Swift coder, but I'd like to be [/quote] Well, you’ve chosen a hard place to start |-: I have a lot to say about this but I want to start by addressing two specific comments: [quote='777577021, coolaj86, /thread/777577, /profile/coolaj86'] I did change Sandbox App to NO in MyApp.entitlements [/quote] Don’t do that. If you don’t want to be sandboxed, remove the App Sandbox capability in the Signing & Capabilities editor. Setting the value to false can cause weird problems (although that’s unlikely to be causing problems for you here). [quote='830567022, coolaj86, /thread/777577?answerId=830567022#830567022, /profile/coolaj86'] using a uri to open system preferences [/quote] That URL scheme changed recently. I have links to docs for it in Supported URL Schemes. [quote='777577021, coolaj86, /thread/777577, /profile/coolaj86'] I always get permission errno 13 (permission denied). [/quote] macOS has multiple l
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Mar ’25
Reply to Memory leak? on Sample code
Self-solving! change below: product->Scheme->Edit Scheme: GPU frame capture : Disabled
Replies
Boosts
Views
Activity
Sep ’20
Reply to Content Steering Error in Handling Steering Manifest
Thank you for the fast reply! I removed the aws pathway as suggested, but the error remains. I've validated the playlists and verified that I can play the media from both the azure and edge CDNs. In fact, I can switch between the CDNs using content steering as long as both pathway ids are specified in the manifest. For example, using manifest #EXTM3U #EXT-X-CONTENT-STEERING:SERVER-URI=https://example.com/content-steering?switching=true,PATHWAY-ID=azure #EXT-X-STREAM-INF:BANDWIDTH=5605600,RESOLUTION=416x240,CODECS=avc1.64001e,mp4a.40.2,PATHWAY-ID=azure https://azure.com/contentsteering/stream_0/stream.m3u8 #EXT-X-STREAM-INF:BANDWIDTH=5605600,RESOLUTION=416x240,CODECS=avc1.64001e,mp4a.40.2,PATHWAY-ID=edge https://edge.com/contentsteering/stream_0/stream.m3u8 and steering manifest { VERSION: 1, TTL: 10, RELOAD-URI: https://example.com/content-steering?&switching=true, PATHWAY-PRIORITY: [ edge, azure, aws ], PATHWAY-CLONES: [] } (It works with and without aws in the priority list, even thoug
Topic: Media Technologies SubTopic: Streaming Tags:
Replies
Boosts
Views
Activity
Dec ’22
AppleWatch send parameter WatchOS App from Url Scheme or Shortcut
I am currently developing an app for Apple Watch. I want to pass a parameter value while calling my Apple Watch app through a shortcut on the Apple Watch. So I thought of url scheme but. I couldn't get this to work on the Apple Watch. So I'm looking for another way. How to create a shortcut that can be executed while passing parameter values to the Apple Watch, In the watchos app, can I call the desired function by receiving the parameter value?
Replies
0
Boosts
0
Views
678
Activity
Apr ’23
Sample Partition Scheme driver kext can't load at boot time.
We are implementing a Sample Partition Scheme driver. this is the info.plist IOKitPersonalities SamplePartitionScheme IOKitDebug 0 IOProbeScore 80000 .... IOProviderClass IOMedia IOPropertyMatch Whole our driver match a whole disk IOMedia, If it's our disk, perform read/write on this disk. When we test our driver in macOS12. if the IOMedia is a blank RAW disk, our driver will be loaded at boot time. if the IOMedia has partitions, system partition scheme driver will be loaded at boot time. Pluging in a GUID partition disk on a booted Mac always load our kext. how can our driver match GUID partition disks and load at boot time?
Replies
1
Boosts
0
Views
811
Activity
Jan ’22
How to format the start and end time in iOS URL schemes in Shortcuts
I created a shortcut 'Add New Event' on my iPad. I need to automate the start and end time, so I use the iOS shortcuts URL schemes. I asign date variable to the start time and end time. Here's the URL I wrote for a start time 2024-01-01-06:00:00 and end time 2024-01-01-07:00:00 shortcuts://run-shortcut?name=Addevent&input=2024-01-01T06:00:00 I can't figure out how to properly write the end time so the URL will get me open the iOS calendar to create an event with a specified start and end time. I wanted to attach an image of the shortcut I created on iPad, but it won't allow me. You can view the image here. https://drive.google.com/file/d/1PIVAjg9Cta2SQr7eUMEpBSrZJpORVaMK/view?usp=sharing note: I actually just need the end time an hour later than the start time. so if there's a better solution, please feel free to comment.
Replies
0
Boosts
0
Views
628
Activity
Jun ’23
Reply to multi language swiftUI app not working
From the screenshot, it looks like you manually created .lproj groups in Xcode. Instead, can you try keeping just one Localizable.strings file and then using the Localizations inspector on the right to vary the file for each language? Xcode will automatically create .lproj folders for you on disk and in the built application. You can then use the Options tab of the scheme editor to run the application in Chinese, Simplified.
Replies
Boosts
Views
Activity
Aug ’22
Reply to Xcode 12 is slow when launching apps (even sample projects)
This worked for xcode - 12.2 beta and IOS 14.2 Untick Debug executable from below paths worked for me. Product -> Scheme -> Edit scheme -> Select Run (left column) -> untick Debug executable Product -> Scheme -> Edit scheme -> Select Test (left column) -> untick Debug executable Then close and run again.
Replies
Boosts
Views
Activity
Nov ’20