Heres is steps:
- I created an IBAction in the header .h files as follows:- (IBAction)Link_btnCliecked:(id)sender
I added a UIButton on the Settings page containing the text that I want to link to.
- I connected the button to IBaction in File Owner appropriately.
- Then implement the following:- (IBAction)Link_btnCliecked:(id)sender{[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://yogapoint.com"]];}
thanks
ReplyDelete