Search results for

file uri scheme

78,591 results found

Post

Replies

Boosts

Views

Activity

canOpenURL not working, scheme now must be only lowercase?
In iOS 9 and below it's working perfectly, on iOS 10 canOpenURL return always NO...In my plist I have this:<key>LSApplicationQueriesSchemes</key> <array> <string>easymeetingS</string> </array>From what this output in console:Jan 1 01:02:18 iPad-41-Air-v100 easymeetingOnCall S(UIKit)[374] <Notice>: -canOpenURL: failed for URL: easymeetingS:// - error: This app is not allowed to query for scheme easymeetingsI can deduce that at some point they enforced lowercase on URL schemas, why? Is this bug or permanent modification? I see nowhere in documentation the enforcing of lowercase...
0
0
1.8k
Jun ’16
Reply to UIPickerview as inputview to UITextfield shows weird behavior - shows Keyboard instead of picker selection for working code
How are you sure textDidBeginEditing is not called at all ?console log didn't print for me.Now I am not able to recreate the issue in the release scheme. Now it's working as expected.Not sure how it got fixed. maybe switching between schemes?Have you ever faced similar issues in the past due to any scheme/target issues?
Topic: Programming Languages SubTopic: Swift Tags:
Nov ’19
Reply to Monterey - Uninstalling Revisited
I've just tried this on Monterey Beta 5. The problem persists however the systemextensionsctl command no longer crashes, but instead still prints out our system extension in a state of [activated enabled], but now two additional lines showing the Team ID, the URI of the system extension, the version, and then - [realizing]
Topic: App & System Services SubTopic: Drivers Tags:
Aug ’21
Reply to WKURLSchemeHandler and fetch
I believe I know the root of this issue. In my case, the webview has its base URL set as a valid location, with a scheme of https. WKWebView sees custom schemes as insecure. WKWebView also does not allow pages loaded with a secure scheme to fetch from domains which are not secure. If I set the base url of my page to nil or an http URL, fetch loads from the custom scheme handler as expected. I haven't yet found any way to change the policy to allow the insecure fetch to proceed.
Topic: Safari & Web SubTopic: General Tags:
Mar ’23
Reply to Passing URL parameters with LSApplicationQueriesSchemes
This is a new security feature of iOS 9.Any app built with SDK 9 needs to provide a LSApplicationQueriesSchemes entry in its plist file, declaring which schemes it attempts to query.<key>LSApplicationQueriesSchemes</key> <array> <string>urlscheme</string> <string>urlscheme2</string> <string>urlscheme3</string> <string>urlscheme4</string> </array>As a point of clarification, do not include :// in the string of a specific app to be whitelisted in the LSApplicationQueriesSchemes array, i.e. comgooglemaps://. If you do include :// canOpenUrl: will return NO and provide the This app is not allowed to query for scheme xxx syslog/error. However, when you make the actual call of canOpenUrl: you must still include the colon i.e. canOpenUrl:@comgooglemaps:Watch WWDC 2015 Session 703 for more information.And the following article clearly explains what to look out for:awkwardhare.com/post/121196006730/quick-take-on-ios-9-ur
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’15