본문 바로가기
프로그래밍/iOS

앱스토어로 페이지 이동시키기

by 백룡화검 2011. 4. 18.

-(void)Go_To_AppStore:(int)App_Id

{

NSString* App_Address = [NSString stringWithFormat:@"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=%d&mt=8", App_Id];

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:App_Address]];

}


출처 : 맥부기 애플

'프로그래밍 > iOS' 카테고리의 다른 글

HTML 파싱 소스  (0) 2011.05.04
썸네일 처리하기  (0) 2011.05.04
orient, Orientation, orientation, 회전, 뷰회전 처리  (0) 2011.04.08
UIColor 값을 RGB로 입력하는 매크로  (0) 2011.04.08
개발시 유용한 자료모음  (0) 2011.04.08