web-dev-qa-db-ja.com

Swift:UIButtonがタップされたときに新しいアプリを開く方法

アプリがあり、uibuttonをクリックしたときに、既にインストールされている別のアプリ(つまり、Waze)を開きます。どうすればできますか?本当にありがとう。

10
thedansaps

これを試して。たとえば、Instagramアプリを開きたいとします。

    var instagramHooks = "instagram://user?username=johndoe"
    var instagramUrl = NSURL(string: instagramHooks)
    if UIApplication.sharedApplication().canOpenURL(instagramUrl!)
    {  
        UIApplication.sharedApplication().openURL(instagramUrl!)

     } else {
        //redirect to safari because the user doesn't have Instagram
        UIApplication.sharedApplication().openURL(NSURL(string: "http://instagram.com/")!)
    }
18
Orkhan Alizade

SecondApp

SecondAppのplistファイルに移動し、文字列iOSDevTipsでURLスキームを追加する必要があります(もちろん、別の文字列を書くこともできます。それはあなた次第です)。

enter image description here

2。 FirstApp

以下のアクションでボタンを作成します。

- (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];
  }

}

それでおしまい。これで、FirstAppのボタンをクリックできると、SecondAppが開きます。

詳細については、参照 ここ

6
PK20

参考のために Waze Community を検索できます。

Objective-Cコードスニペット:

if ([[UIApplication sharedApplication]
canOpenURL:[NSURL URLWithString:@"waze://"]]) {

  // Waze is installed. Launch Waze and start navigation
  NSString *urlStr =
    [NSString stringWithFormat:@"waze://?ll=%f,%f&navigate=yes",
    latitude, longitude];

  [[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlStr]];

 } else {

  // Waze is not installed. Launch AppStore to install Waze app
  [[UIApplication sharedApplication] openURL:[NSURL
    URLWithString:@"http://iTunes.Apple.com/us/app/id323229106"]];
}

Swiftコードスニペット:

if UIApplication.shared.canOpenURL(URL(string: "waze://")!) {
    // Waze is installed. Launch Waze and start navigation
    let urlStr = String(format: "waze://?ll=%f, %f&navigate=yes", latitude, longitude)
    UIApplication.shared.openURL(URL(string: urlStr)!)
} else {
    // Waze is not installed. Launch AppStore to install Waze app
    UIApplication.shared.openURL(URL(string: "http://iTunes.Apple.com/us/app/id323229106")!)
}
2
Mint

Swift 4では、次のように使用できます:

    if let url = URL(string: "\(myUrl)") {
        UIApplication.shared.open(url, options: [:], completionHandler: nil)
    }
1

swift4 wazeで

class FullMapVC: UIViewController {

    var lat:CLLocationDegrees?
    var long:CLLocationDegrees?

    func wazeMaps()
    {
        let openUrl = URL(string: "waze://?ll=\(String(describing: lat!)),\(String(describing: long!))&navigate=yes")!
        UIApplication.shared.open(openUrl , options:[:]) { (success) in
            if !success
            {

            }
        }
    }

}

グーグルマップを使用したい場合は、URLを置き換えます

 let openUrl = URL(string: "comgooglemaps://?saddr=&daddr=\(String(describing: lat!)),\(String(describing: long!))&directionsmode=driving")!
1
u.gen