1. 특정 App 상세설명 화면으로 이동하기
NSString *myAppID = @"686296101";
NSString *url = [NSString stringWithFormat: @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%@", myAppID];
//iOS7 doesn't approve above format so add iOS7 specific format
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {
url = [NSString stringWithFormat: @"itms-apps://itunes.apple.com/app/id%@", myAppID];
}
[[UIApplication sharedApplication] openURL: [NSURL URLWithString: url]];
'iOS/Mac' 카테고리의 다른 글
[iOS] Camera 기능 호출하기 및 Landscape 만 지원할때 해결책 (0) | 2014.01.09 |
---|---|
[iOS] Camera App 만드는 방법 (0) | 2014.01.09 |
Apple URL Scheme Reference (0) | 2013.12.20 |
XIB만 추가하여 iPhone, iPad 지원하는 방법 (0) | 2013.12.06 |
[iOS] XIB 이용한 SingleView 만들기 (0) | 2013.11.30 |