我有一個小程序,我可以從其中下載另一個應用程序, 通過去ippa的plist, 從閱讀到網址需要很多時間,當我看到應用程序開始下降, 有沒有一種方式,它不需要時間點擊?從URL打開應用程序 - ios 10
1
A
回答
0
if let url = NSURL(string:<#Your url string here#>) {
if #available(iOS 10.0, *) {
// for ios 10
UIApplication.shared.open(url as URL, options: [:], completionHandler: nil)
}
else {
// for ios 9 or older
UIApplication.shared.openURL(url as URL)
}
}
+0
這是我的代碼,但它不起作用 – Dvor
-1
let appId = "xxx"
let storeUrl = String(format: "itms-apps://itunes.apple.com/app/id%@", arguments: [appId])
UIApplication.shared.openURL(URL(string: storeUrl)!)
+0
我的商店中的應用程序 – Dvor
相關問題
- 1. 在iOS應用程序中打開URL
- 2. iOS 10 UNNotificationAction從後臺打開應用程序
- 3. 打開iOS應用程序時,打開某個模式的URL
- 4. 從後臺打開iOS應用程序
- 5. 如何從iOS版Chrome瀏覽器打開應用程序url
- 6. 從iOS中的後臺應用程序打開應用程序?
- 7. 從我的iOS 5應用程序打開Twitter應用程序
- 8. 黑莓10原生簡單的應用程序打開url
- 9. iOS 10 webview未打開應用程序方案
- 10. iOS 10無法打開Spotify應用程序
- 11. 應用程序何時打開URL?
- 12. iOS如何從URL打開應用程序或重定向到應用程序商店下載應用程序
- 13. 如何使用url打開ios應用程序?
- 14. 從後臺應用程序中打開帶有url方案的應用程序
- 15. 如何使用URL方案從我的應用程序在Xamarin iOS中打開另一個應用程序
- 16. 通過URL打開vimeo應用程序
- 17. 打開Android應用程序或URL
- 18. 在Android應用程序中打開URL
- 19. 通過URL打開YouKu應用程序
- 20. 硒webdriver不打開應用程序url
- 21. 通過EMail打開IOS應用程序
- 22. 打開新視圖iOS應用程序
- 23. iOS打開特定應用程序
- 24. 對於iOS應用程序打開
- 25. iOS啓動時打開應用程序
- 26. Safari無法從url打開本地地圖應用程序iOS5
- 27. 打開另一個應用程序從反應原生的iOS應用程序
- 28. 如何從應用程序打開圖庫應用程序?
- 29. iOS應用程序打開屏幕到應用程序閃爍
- 30. 打開URL IOS
很多從... – Dvor
示例代碼時間:NSURL * URL = [NSURL URLWithString:@「ITMS服務://行動=下載艙單及URL = https://開頭.. ... plist「]; [[UIApplication sharedApplication] openURL:url選項:@ {} completionHandler:nil]; – Dvor