根据其 URL 方案打开应用程序
要使用已定义的 URL 方案 todolist://
打开应用:
Objective-C 的
NSURL *myURL = [NSURL URLWithString:@"todolist://there/is/something/to/do"];
[[UIApplication sharedApplication] openURL:myURL];
迅速
let stringURL = "todolist://there/is/something/to/do"
if let url = NSURL(string: stringURL) {
UIApplication.shared().openURL(url)
}
HTML
<a href="todolist://there/is/something/to/do">New SMS Message</a>
注意: 检查是否可以打开链接以向用户显示相应的消息是有用的。这可以使用
canOpenURL:
方法完成。