This is the code I have now, taken from an answer to a similar question.
@IBAction func GoogleButton(sender: AnyObject) { if let url = NSURL(string: "www.google.com"){ UIApplication.sharedApplication().openURL(url) } }
The button is called Google Button and its text is www.google.com
How do I make it open the link when I press it?
What your code shows is the action that would occur once the button is tapped, rather than the actual button. You need to connect your button to that action.
(I've renamed the action because GoogleButton
is not a good name for an action)
In code:
override func viewDidLoad() { super.viewDidLoad() googleButton.addTarget(self, action: "didTapGoogle", forControlEvents: .TouchUpInside) } @IBAction func didTapGoogle(sender: AnyObject) { UIApplication.sharedApplication().openURL(NSURL(string: "http://www.google.com")!) }
In IB:
Edit: in Swift 3, the code for opening a link in safari has changed. Use UIApplication.shared().openURL(URL(string: "http://www.stackoverflow.com")!)
instead.
Edit: in Swift 4 UIApplication.shared.openURL(URL(string: "http://www.stackoverflow.com")!)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With