ios开发时 应用之间的跳转非常常用,比如 在一些购物类app上 直接跳转到支付宝app进行付款,比如 微信分享给好友 或者 朋友圈,可以跳转到微信不同的界面等,应用场景很多,就不一一赘述,那么如何实现应用之间的跳转呢?
- (IBAction)skipToWechat {
[self openURLWithString:@"wechat://"];
}
- (IBAction)skipToTimeline {
[self openURLWithString:@"wechat://timeline?news"];
}
- (IBAction)skipToSession {
[self openURLWithString:@"wechat://session?news"];
}
- (void)openURLWithString:(NSString *)urlString
{
// 1.获取到对应应用程序的URL
NSURL *wechatURL = [NSURL URLWithString:urlString];
// 2.判断手机中是否安装了对应的应用程序
if ([[UIApplication sharedApplication] canOpenURL:wechatURL]) {
// 3.打开应用程序
[[UIApplication sharedApplication] openURL:wechatURL];
}
}
时间: 2024-10-06 03:29:34