从另一个内部启动应用程序(IPhone)是否有可能从另一个应用程序中启动任意的iPhone应用程序?例如 在我的应用程序中,如果我希望用户按下一个按钮并直接进入手机应用程序(关闭当前的应用程序,打开手机应用程序).这有可能吗?我知道这可以用来打电话与电话的网址链接,但我想让手机应用程序的启动,而不拨任何具体的号码。
3 回答
波斯汪
TA贡献1811条经验 获得超4个赞
FirstApp
SecondApp
在第二应用程序中 转到第二个应用程序的plist文件,您需要添加一个 URL方案用绳子 iOSDevTips(当然,你可以写另一个字符串,这取决于你自己)。
- (void)buttonPressed:(UIButton *)button{ NSString *customURL = @"iOSDevTips://"; if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:customURL]]) { [[UIApplication sharedApplication] openURL:[NSURL URLWithString:customURL]]; } else { UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"URL error" message:[NSString stringWithFormat:@"No custom URL defined for %@", customURL] delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil]; [alert show]; }}
- 3 回答
- 0 关注
- 523 浏览
添加回答
举报
0/150
提交
取消