监测手机是否有装app然后打开还是跳转appstore

2016-07-04  本文已影响59人  6129b93b59e2

首先配置 URL Schemes


Paste_Image.png

//监测手机里是否装有app

  NSURL *instagramURL = [NSURL URLWithString:@"eby://"];
  BOOL hasInstagram = [[UIApplication sharedApplication] canOpenURL:instagramURL];

//打开app

[[UIApplication sharedApplication] openURL:instagramURL];

这里注意 以上是iOS8以前的 如果是9之后的话需要加入白名单下面有举例

Paste_Image.png

H5来监测的话 推荐一篇文章(毕竟我不是行家)

http://www.tuicool.com/articles/6vqQ3a7

上一篇下一篇

猜你喜欢

热点阅读