0

How do you open a URL in Xcode using Sprite Kit with the programming language swift. For example having the user go to rate your game on the app store or taking the user to your website.

sangony
  • 11,636
  • 4
  • 39
  • 55
Thomas
  • 47
  • 1
  • 3

1 Answers1

0
UIApplication.sharedApplication().openURL(NSURL(string: "https://www.google.com")!)
Robert
  • 5,278
  • 43
  • 65
  • 115
Bimal
  • 1