iOS开发跳转AppStore、拨打电话

来源:互联网 发布:网络词语woc是什么意思 编辑:程序博客网 时间:2024/06/05 17:19

跳转AppStore @”*******” 为你要跳转的APPID

  NSString *urlStr = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/id%@", @"*******"];     [[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlStr]];

拨打电话 string 为你要拨打电话

  [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"tel://%@",string]] options:@{} completionHandler:^(BOOL success) {                }];

备注 : @”telprompt:// * ” 会有弹框提示 确认是否要拨打
@”tel://*” 直接拨打

0 0
原创粉丝点击