I have an applet from which I can download another app, Through the plist that goes to ipa, It takes a lot of time from reading to url and by the time I see that the app is starting to drop, Is there a way that it will not take time to click?
Asked
Active
Viewed 216 times
1
-
a lot of time from ... – Dvor Sep 25 '17 at 11:56
-
example code:NSURL* url = [NSURL URLWithString:@"itms-services://?action=download-manifest&url=https://.....plist"] ; [[UIApplication sharedApplication] openURL:url options:@{} completionHandler:nil]; – Dvor Sep 26 '17 at 05:59
1 Answers
-1
let appId = "xxx"
let storeUrl = String(format: "itms-apps://itunes.apple.com/app/id%@", arguments: [appId])
UIApplication.shared.openURL(URL(string: storeUrl)!)

Eren Gündüz
- 40
- 9