Today App Extension Widget Tap To Open Containing App

前端 未结 5 1159
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-02 15:36

I\'ve implemented a Today widget for my application +Quotes which displays the day\'s quote within the notification center with the help of these Apple Docs. What I\'d like

5条回答
  •  Happy的楠姐
    2020-12-02 15:44

    Swift 2 version, according to Apple Doc

    extensionContext?.openURL(NSURL(string: "foo://")!, completionHandler: nil)
    

    Swift 3 version

    extensionContext?.open(URL(string: "foo://")! , completionHandler: nil)
    

    And don't forget to add Custom URL Schemes into Info.plist

提交回复
热议问题