iOS deep linking
问题 I've integrated custom url calls to link to specific pages on my app with the url scheme definitions example: myapp://?id=123 the problem is that I am not sure how to cause the ios to go to the appstore if my app is not installed on the specific device ( just like Pinterest ). 回答1: UIApplication has a canOpenURL: method that you can use to query the system to check if it can handle a URL with your custom scheme. If it can then you can open the URL and know your app is installed. If it can't