url-scheme

iOS 11 URL Scheme for specific Settings section stopped working

人盡茶涼 提交于 2019-12-02 23:21:54
My app uses a URL scheme to take users directly to Settings/General/About section, the following URL was working fine in 10.3.x. "App-Prefs:root=General&path=About" However, this URL scheme no longer works in iOS 11 GM build. It only launches the Settings app, but doesn't take user any further. Does anybody know if this is expected in iOS 11 official release? Thanks in advance. let url = NSURL(string: "app-settings:root=Privacy&path=LOCATION")! as URL UIApplication.shared.open(url, options: [:], completionHandler: nil) It works fine for me, iOS11 both on iPhone device and simulator. "App-Prefs

Is there an href attribute for skype, like “mailto:” or “tel:”?

夙愿已清 提交于 2019-12-02 17:48:40
I am looking to make a skype link for a mobile site, is there a way use <a href=" to make it launch skype and add or call a user? If your mobile site is (generally) used by iOS devices, you can use : <a href="skype:YourSkypeName?call">Call me on Skype</a> Apple iOS devices automatically recognizes intents in link with Skype and FaceTime. You can use skype:<username|phonenumber>[?[add|call|chat|sendfile|userinfo]] or callto:<screenname|phonenumber> , according to this wikipedia page: http://en.wikipedia.org/wiki/URI_scheme#callto : To turn your skype id into a link so people can add you to

Universal links on iOS vs. deep links (URL schemes)

柔情痞子 提交于 2019-12-02 14:08:25
As I'm reading, iOS 9 introduced Universal Links. In the "Support Universal Links" section in Apple's App Search Programming Guide , it says that this is not exactly like deep linking with URL schemes, but I'm not totally clear about this topic: What is actually the difference(s) between Universal Link and the URL Schemes? Is it that a Universal Link is only for hyperlinks in websites, and the Mail or Messages apps? Do Universal Links replace URL schemes? Are Universal Links a type of deep link? Universal links is the iOS's capability of sending web url request to a given app, instead of

How to open iOS app from browser?

不打扰是莪最后的温柔 提交于 2019-12-01 23:33:54
I have to open my iOS app whenever user open a link of my app in browser. I have already used a like myApp:// but i want to open my app even when user open an http link a from browser. Just like pinterest. Pinterest opens app even if i open a regular http link like this http://www.pinterest.com/pseudoamber/ and using URL scheme as well like this pinterest://www.pinterest.com/pseudoamber/ . My app is opening on myApp://www.myapp.com now i want to open my app when user open an http link like this http://www.myapp.com Anybody please help Here is an example using jQuery: $(document).ready(function

How to use url scheme for application not installed in device

白昼怎懂夜的黑 提交于 2019-12-01 14:16:32
I have an application in store, which allow to display a list of items in a first view, details of an item in the second view. I use the url schemes to access to the details of an item from an external source (Facebook for exemple) My question: if the application was not installed in the device, is there any way that allow to download the application and open it at the right item (using url scheme) Thank in advance For iOS>9 if ([[UIApplication sharedApplication] openURL:SchemaURL] == false) { [[UIApplication sharedApplication] openURL:iTunesAppURL]; } What you're describing is called Deferred

loading url from scheme not processing first time - appdelegate vs viewcontroller

旧街凉风 提交于 2019-12-01 13:30:46
问题 My app is successfully opening and setting the parameters (from URL-scheme i.e. myApp://sometextToPrint) to a variable in the AppDelegate class but whenever I want to process them it fails at the first time when the app is opened from that URL. I have the app in foreground checker that calls the function for printing the parameters given, but somehow it looks like the AppDelegate is loaded later than the view why the view fails to print the parameters at first load. My code looks as follow:

URL Scheme Attachment Microsoft Outlook app

余生颓废 提交于 2019-12-01 12:19:31
I'm trying to make an app that generates a file and fills all email fields so the user just has to enter the body. I also give the user the possibility to choose between the native iOS email app and the Microsoft Outlook app (if it has it installed). When I implement this to prepare the email to be sent in native email app I have used MessageUI framework wich make easy attaching the file, but for Outlook app I have to use an URL Scheme ( ms-outlook:// ) and it seems that there are no easy way (or a way at all) to attach files. Does anyone have successfully sent an attachment from another app

Custom URL scheme for Pinterest on iOS Safari to open board URL?

半腔热情 提交于 2019-12-01 11:49:35
问题 I can't for the life of me find out how to simply open a Pinterest board (by launching the APP if it's installed) through an anchor within HTML. I've taken a look at: https://developers.pinterest.com, but still can't find what i'm looking for. It seems most of the documentation out there is geared more towards the action of pinning an item, rather than viewing. All I want to do is open a users profile. For example, i've dug up the following which works great for alternative social media links

Custom URL Scheme for Settings on iOS 10?

☆樱花仙子☆ 提交于 2019-12-01 04:04:19
Any Idea what happened to the Setting's Custom URL Scheme on iOS 10? Is Apple still giving acess to third-pary apps to launch iOS Settings from the app via URL Scheme on iOS10? The Old URL scheme are not working anymore! None of the previous methods for launching the root "Settings" app on iOS 8+ were officially supported by Apple, so unfortunately we can't rely on them. It's also possible that apps that relied on the undocumented behaviors could be rejected during App Store review, even if others have been approved--even if the same app had been previously approved! I've been unable to

How can I launch back the app that opened my custom URL scheme?

*爱你&永不变心* 提交于 2019-12-01 03:54:08
问题 I'm working on an app that manages my own URL scheme so I implement the callback: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions (NSDictionary *)launchOptions { // Get our launch URL if (launchOptions != nil) { // Launch dictionary has data NSURL* launchURL = [launchOptions objectForKey: UIApplicationLaunchOptionsURLKey]; // Parse the URL NSString* hostString = [launchURL host]; blah blah blah... It works very nice but I need to launch the caller application (i