根據其 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:
方法完成。