在一些情况或者需求,比如跳转app store更新app版本、对app进行评论等需要跳转app store商店,可以使用下面的代码进行跳转
app跳转app store方法,idxxxx中的xxx为app在app store的app id
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms-apps://itunes.apple.com/app/idxxxxxx"] options:@{} completionHandler:^(BOOL success) {
}];
跳转系统浏览器safari,打开指定网页
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://www.baidu.com"] options:@{} completionHandler:nil]
网友评论