1
什麼是我在App Store上的應用程序的鏈接?我只想輸入應用程序ID。鏈接到App Store
[[UIApplication sharedApplication]
openURL:[NSURL URLWithString:@"???"]];
什麼是我在App Store上的應用程序的鏈接?我只想輸入應用程序ID。鏈接到App Store
[[UIApplication sharedApplication]
openURL:[NSURL URLWithString:@"???"]];
NSString *idString = @"380886386";
NSString *countrtyString = @"us";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://itunes.apple.com/%@/app/id%@?mt=8", countrtyString, idString]]];