3
iOSのあるアプリから別のアプリに移動する方法。
その瞬間にデバイスにアプリが存在する場合は、別のアプリに移動する方法。iOSのアプリ内の他のアプリからアプリを開く方法
iOSのあるアプリから別のアプリに移動する方法。
その瞬間にデバイスにアプリが存在する場合は、別のアプリに移動する方法。iOSのアプリ内の他のアプリからアプリを開く方法
let url = NSURL(string: "NameOfTheAppAsOnAppStrore:")
// canOpenURL will return a bool value checking the presence of app in your device and if app is present, it will open the same.
if UIApplication.sharedApplication().canOpenURL(url!)
UIApplication.sharedApplication().openURL(url!)
}