Search results for

file uri scheme

79,827 results found

Post

Replies

Boosts

Views

Activity

target scheme test as root
Hi,In target scheme editor, Run, we can Debug Process As root.How can we set the same option in Test as Debug Process As root. The option is disabled.I'm using Xcode Version 9.0 (9A235). I couldn't find anything in .xcscheme file.Thanks 🙂
0
0
685
Oct ’17
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
451
Feb ’18
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
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
359
Apr ’23
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
379
Oct ’15
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
733
Aug ’17