Reputation: 8328
How I can open my App from the Today Widget with Swift ? I just want to pressed the Widget and than i would like to open my App. I got right now a button on my whole view the button is clear. But that don't work for me:( I need Help:)
@IBAction func launchApp(sender: AnyObject) {
var url: NSURL = NSURL.URLWithString("AffordItLauncher://")
self.extensionContext?.openURL(url, completionHandler: nil)
}
Upvotes: 11
Views: 5891
Reputation: 3029
In your info.plist you need to add the following:
And make sure that your app name is the same as the one in your url. In your case, it should be AffordItLauncher
Upvotes: 14