Search results for

“file uri scheme”

81,721 results found

Post

Replies

Boosts

Views

Activity

Reply to How to install self signed CA root certificate on iOS 13 simulators
I am still consistently seeing this issue when I try to drag and drop a .cer file onto my simulators per the instructions in https://developer.apple.com/library/archive/qa/qa1948/_index.html. However, if I put my .cer file on a webserver an navigate to it using safari in the simulator, the profile installation process happens as expected.The drag and drop method tries to open the .cer file using the file:// scheme. The iOS 13 release notes do not specifically mention that loading a .cer file using the file:// scheme has been dropped, but they do mention changes to what file:// urls can do.https://developer.apple.com/documentation/ios_ipados_release_notes/ios_13_release_notes?preferredLanguage=occRemoved support for FTP and File URL schemes for Proxy Automatic Configuration (PAC). HTTP and HTTPS are the only supported URL schemes for PAC. This affects all PAC configurations including, but not limited to,
Oct ’19
Linguistic schemes not found on device
Does anyone understand why this is happening?On any simulator all of the schemes are found with the following code:NSArray<NSLinguisticTagScheme> *availSchemes = [NSLinguisticTagger availableTagSchemesForLanguage:@en]; for (NSLinguisticTagScheme scheme in availSchemes) { NSLog(@Tag scheme %@, scheme); }yielding the following:2018-02-13 09:12:54.066970-0500 MY_APP[79671:5737063] Tag scheme Language 2018-02-13 09:12:54.067160-0500 MY_APP[79671:5737063] Tag scheme Script 2018-02-13 09:12:54.067300-0500 MY_APP[79671:5737063] Tag scheme TokenType 2018-02-13 09:12:54.067425-0500 MY_APP[79671:5737063] Tag scheme LexicalClass 2018-02-13 09:12:54.067541-0500 MY_APP[79671:5737063] Tag scheme NameType 2018-02-13 09:12:54.067655-0500 MY_APP[79671:5737063] Tag scheme NameTypeOrLexicalClass 2018-02-13 09:12:54.067768-0500 MY_APP[79671:5737063] Tag scheme LemmaHowever, on my device (iPhone 6s iOS 11.2) I receive the foll
0
0
456
Feb ’18
How does Robokiller deep link into Settings, are they using a private URL scheme?
An app can legally link into its own section of the Settings app, and if it uses CallKit, it can link into the Call Blocking & Identification section. Linking anywhere else into Settings is making use of private URL schemes and is supposed to not be permitted and the app rejected during submission. However the Robokiller app deep links into the Settings app with the page scrolled down to where the Phone section is. How are they doing that? Is there some new API that permits the app to link to there? Or are they making illegal use of private URIs and have been getting away with getting past App Store review for years?
0
0
373
Apr ’23
Reply to NSURLProtocol in WKWebView
Hi,We are trying to port our Cordova app to WKWebView. But the Cordova File plug-in use a custom scheme to work. With UIWebView, this plug-in was intercepting URLs with custom scheme using NSURLProtocol to load related files (local resources files). It seem that it is not possible to do that with WKWebView, and it is a blocker for us. There is another strategy to do that in WKWebView?Do we need to wait iOS 11 to have this kind of feature?Thanks!
Topic: Programming Languages SubTopic: General Tags:
Dec ’16
Cannot reset schemes on 'canOpenUrl'
The official API reference says as follows.https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIApplication_Class/#//apple_ref/occ/instm/UIApplication/canOpenURL: If your app is linked against an earlier version of iOS but is running in iOS 9.0 or later, you can call this method on 50 distinct URL schemes. After hitting this limit, subsequent calls to this method return NO. If a user reinstalls or upgrades the app, iOS resets the limit. I made an AdHoc .ipa and tried to reinstall to confirm whether the limit of URL schemes were reset or not through iTunes. However, unlike the sentence says, the limit was not reset.How should we do reset the URL limit ?
Topic: UI Frameworks SubTopic: UIKit Tags:
1
0
390
Oct ’15
Reply to AssetId is malformed in Safari Demo Application if URI is greater than 16 characters
Hey,Here are the details of the work around that I used to fix this (for me)/** In the Safari Sample App **/function extractContentId(data) { myContentId = arrayToString(data); console.log('AssetID : ' + myContentId); // contentId is passed up as a URI, from which the host must be extracted: - Karl: Bug in Safari if URI is longer that 16 chars var link = document.createElement('a'); var uri = encodeURIComponent(myContentId); link.href = myContentId; //return link.hostname; console.log('AssetId :' + myContentId.split('//')[1]); return myContentId.split('//')[1]; //Karl: work around for bug }/** Parsing AssetId in C# **/System.Text.Encoding.ASCII.GetString(bytes);
Topic: Media Technologies SubTopic: Streaming Tags:
Mar ’17
Passing data through custom url schemes
Hi All,I want to use URL schemes for communication between two applications. Want to do this both in our Android and iOS application.To pass some extra data between two applications using URL schemes. Extras with Implicit intent can be used in Android.https://developer.android.com/guide/components/intents-filters.html#BuildingDoes the same can be achieved in IOS URL schemes. ? As far as i can understand data can be only sent through the url query parameters.https://developer.apple.com/library/content/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/Inter-AppCommunication/Inter-AppCommunication.htmlBest Regards,Saurav
Topic: UI Frameworks SubTopic: UIKit Tags:
0
0
736
Aug ’17
Reply to How to install self signed CA root certificate on iOS 13 simulators
I am still consistently seeing this issue when I try to drag and drop a .cer file onto my simulators per the instructions in https://developer.apple.com/library/archive/qa/qa1948/_index.html. However, if I put my .cer file on a webserver an navigate to it using safari in the simulator, the profile installation process happens as expected.The drag and drop method tries to open the .cer file using the file:// scheme. The iOS 13 release notes do not specifically mention that loading a .cer file using the file:// scheme has been dropped, but they do mention changes to what file:// urls can do.https://developer.apple.com/documentation/ios_ipados_release_notes/ios_13_release_notes?preferredLanguage=occRemoved support for FTP and File URL schemes for Proxy Automatic Configuration (PAC). HTTP and HTTPS are the only supported URL schemes for PAC. This affects all PAC configurations including, but not limited to,
Replies
Boosts
Views
Activity
Oct ’19
Linguistic schemes not found on device
Does anyone understand why this is happening?On any simulator all of the schemes are found with the following code:NSArray<NSLinguisticTagScheme> *availSchemes = [NSLinguisticTagger availableTagSchemesForLanguage:@en]; for (NSLinguisticTagScheme scheme in availSchemes) { NSLog(@Tag scheme %@, scheme); }yielding the following:2018-02-13 09:12:54.066970-0500 MY_APP[79671:5737063] Tag scheme Language 2018-02-13 09:12:54.067160-0500 MY_APP[79671:5737063] Tag scheme Script 2018-02-13 09:12:54.067300-0500 MY_APP[79671:5737063] Tag scheme TokenType 2018-02-13 09:12:54.067425-0500 MY_APP[79671:5737063] Tag scheme LexicalClass 2018-02-13 09:12:54.067541-0500 MY_APP[79671:5737063] Tag scheme NameType 2018-02-13 09:12:54.067655-0500 MY_APP[79671:5737063] Tag scheme NameTypeOrLexicalClass 2018-02-13 09:12:54.067768-0500 MY_APP[79671:5737063] Tag scheme LemmaHowever, on my device (iPhone 6s iOS 11.2) I receive the foll
Replies
0
Boosts
0
Views
456
Activity
Feb ’18
voice line over tel: scheme
My App uses the tel: scheme to initialize calls. with 12.1 beta 2 i checked this out with my new dual esim. i cant select the voice line with the url scheme. any suggestions ?
Replies
0
Boosts
0
Views
449
Activity
Oct ’18
Can i get url scheme from application token?
I want to open an app which user chose from FamilyActivityPicker. What i know is that ios needs url scheme when open another app in an app, and familyActivityPicker can give me some application info. for example, i can get selected app's title and icon through Label(:ApplicationToken). Can I get url schemes similar to this way?
Replies
1
Boosts
0
Views
595
Activity
Aug ’23
How does Robokiller deep link into Settings, are they using a private URL scheme?
An app can legally link into its own section of the Settings app, and if it uses CallKit, it can link into the Call Blocking & Identification section. Linking anywhere else into Settings is making use of private URL schemes and is supposed to not be permitted and the app rejected during submission. However the Robokiller app deep links into the Settings app with the page scrolled down to where the Phone section is. How are they doing that? Is there some new API that permits the app to link to there? Or are they making illegal use of private URIs and have been getting away with getting past App Store review for years?
Replies
0
Boosts
0
Views
373
Activity
Apr ’23
Reply to NSURLProtocol in WKWebView
Hi,We are trying to port our Cordova app to WKWebView. But the Cordova File plug-in use a custom scheme to work. With UIWebView, this plug-in was intercepting URLs with custom scheme using NSURLProtocol to load related files (local resources files). It seem that it is not possible to do that with WKWebView, and it is a blocker for us. There is another strategy to do that in WKWebView?Do we need to wait iOS 11 to have this kind of feature?Thanks!
Topic: Programming Languages SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’16
Application with Settings url schemes
Hi All,Does apple reject applications that opens settings screen with url schemes such as App-prefs:root=wifi or prefs:wifi.Thanks in advance.
Replies
0
Boosts
0
Views
950
Activity
Apr ’18
Reply to Xcode project and source control
This is contains the html describing the build scheme. It should only change when you change the scheme. Another file contains breakpoints, no use to source control. AFAIU, it should be safe to ignore all in your account (igorkorot) userData.
Replies
Boosts
Views
Activity
Oct ’21
Cannot reset schemes on 'canOpenUrl'
The official API reference says as follows.https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIApplication_Class/#//apple_ref/occ/instm/UIApplication/canOpenURL: If your app is linked against an earlier version of iOS but is running in iOS 9.0 or later, you can call this method on 50 distinct URL schemes. After hitting this limit, subsequent calls to this method return NO. If a user reinstalls or upgrades the app, iOS resets the limit. I made an AdHoc .ipa and tried to reinstall to confirm whether the limit of URL schemes were reset or not through iTunes. However, unlike the sentence says, the limit was not reset.How should we do reset the URL limit ?
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
1
Boosts
0
Views
390
Activity
Oct ’15
Reply to AssetId is malformed in Safari Demo Application if URI is greater than 16 characters
Hey,Here are the details of the work around that I used to fix this (for me)/** In the Safari Sample App **/function extractContentId(data) { myContentId = arrayToString(data); console.log('AssetID : ' + myContentId); // contentId is passed up as a URI, from which the host must be extracted: - Karl: Bug in Safari if URI is longer that 16 chars var link = document.createElement('a'); var uri = encodeURIComponent(myContentId); link.href = myContentId; //return link.hostname; console.log('AssetId :' + myContentId.split('//')[1]); return myContentId.split('//')[1]; //Karl: work around for bug }/** Parsing AssetId in C# **/System.Text.Encoding.ASCII.GetString(bytes);
Topic: Media Technologies SubTopic: Streaming Tags:
Replies
Boosts
Views
Activity
Mar ’17
Reply to Why isn't an XCFramework's Info.plist "stable"?
Also: the same issue exists for scheme files, which is equally annoying.
Replies
Boosts
Views
Activity
Oct ’23
Emoji as Custom URL Scheme
Hi fellow Saplings,I'm wondering if we can use Emoji as the header for custom URL schemes in iOS apps.For instance : U+1F4A9://
Replies
1
Boosts
0
Views
965
Activity
Sep ’17
Reply to Data size limit in MSMessage?
The documentation appears to be updated:The URL property must use an http, https, or file scheme. Custom app schemes are not supported. Additionally, the URL cannot be longer than 5,000 characters.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’16
Passing data through custom url schemes
Hi All,I want to use URL schemes for communication between two applications. Want to do this both in our Android and iOS application.To pass some extra data between two applications using URL schemes. Extras with Implicit intent can be used in Android.https://developer.android.com/guide/components/intents-filters.html#BuildingDoes the same can be achieved in IOS URL schemes. ? As far as i can understand data can be only sent through the url query parameters.https://developer.apple.com/library/content/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/Inter-AppCommunication/Inter-AppCommunication.htmlBest Regards,Saurav
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
0
Boosts
0
Views
736
Activity
Aug ’17
Reply to extract asset id from playlist (fairplay)
I place mine in the key uri. For example, skd://token?assetid=23asdf
Topic: Media Technologies SubTopic: Streaming Tags:
Replies
Boosts
Views
Activity
Sep ’18