BilalReffas
BilalReffas

Reputation: 8328

Open App From Widget IOS with Swift

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

Answers (2)

ingconti
ingconti

Reputation: 11646

row in info.plist seems not needed on iOS17

Upvotes: 0

Ashraf Tawfeeq
Ashraf Tawfeeq

Reputation: 3029

In your info.plist you need to add the following:

enter image description here

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

Related Questions