LoginSignup
8
7

More than 5 years have passed since last update.

Safari など外部アプリで開く

Last updated at Posted at 2012-04-17
        NSURL *url = [NSURL URLWithString:urlString];
        if ([[UIApplication sharedApplication] canOpenURL:url]) {
            [[UIApplication sharedApplication] openURL:url];
        } else {
            // エラー処理
        }

Apple 標準アプリを開く URL は Apple URL Scheme Reference を参照。
Mail, Phone, Text, Map, YouTube, iTunes へのリンクが掲載されている。

8
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
7