I'm making a lite version of my ipod app and I'm trying to make a button that says "Click here to download the full version" that links to my app in the app store, but I can't seem to figure out how. I know how to open a link in safari but that's about it. I can't seem to find the right documentation for it. Can somebody please help?
Here's what I have:
Here's what I have:
Code:
-(IBAction)link{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.itunes.com/apps/zapball"]];
}