After clicking on a UIView I want to take the user of my app OUT of my app and to another app on the app store. How do i do it?
+3
A:
NSString *buyString=@"http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=APP_ID&mt=8"; NSURL *url = [[NSURL alloc] initWithString:buyString]; [[UIApplication sharedApplication] openURL:url]; [url release];
Tuomas Pelkonen
2010-03-22 09:18:05