I want to create an IBAction for a button, that when you push it, the app go in background and at the same time open safari at a specific link (example "www.google.it") Can you help me?

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

Inside your IBAction method, include the line

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.google.com"]];
link|improve this answer
feedback

If you use interface builder :

Create a UITextView and not a UIButton, write the link as text to textview and select the links checkbox in the interface builder. It will become the link you want at run time.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.