I want to show all my itunes app listed to user.
I have button called More Apps . So i want to redirect it to App Store to show all my apps to user.
How to show this list ?
I want to show all my itunes app listed to user.
I have button called More Apps . So i want to redirect it to App Store to show all my apps to user.
How to show this list ?
redirect Url is Possible , By Which You can redirect to app store like ,
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://appstore.com/gameloft"]];
You can take look at Apple Documentation Link
You can also display your App Store page right inside your app with StoreKit. Just replace 383916386
with the correct id for your developer account.
SKStoreProductViewController *viewCtrl = [[SKStoreProductViewController alloc] init];
[viewCtrl loadProductWithParameters:@{SKStoreProductParameterITunesItemIdentifier: @"383916386"} completionBlock:nil];
[self presentViewController:viewCtrl animated:YES completion:nil];
Get your "More App By this developer" url from browser (I have checked this code, it worked fine for me)
let itunesUrl = "itms://MORE_APP_BY_THIS_DEVELOPER_URL"
guard let url = URL(string: itunesUrl) else { return }
if UIApplication.shared.canOpenURL(url) {
UIApplication.shared.openURL(url)
}
in Objective-C
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://MORE_APP_BY_THIS_DEVELOPER_URL"]];
For example:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.apple.com/in/developer/aol-inc./id281704577"]];