1. 程式人生 > >如何點選連結直接跳轉到app store指定應用下載頁面

如何點選連結直接跳轉到app store指定應用下載頁面

NSString *str = [NSString stringWithFormat:@"http://itunes.apple.com/us/app/id%d", 436957167];
[[UIApplication sharedApplication] openURL:[NSURL urlWithString:str]];

其中,436957167是appid

附:跳轉到評價頁面:

NSString *str = [NSString stringWithFormat:  
                         @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%d",  
                         436957167 ];  
[[UIApplication sharedApplication] openURL:[NSURL urlWithString:str]];