Skip to content

Instantly share code, notes, and snippets.

@iosdevie
Created May 29, 2021 19:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iosdevie/00474b9da42727492b681a30a7cdac75 to your computer and use it in GitHub Desktop.
Save iosdevie/00474b9da42727492b681a30a7cdac75 to your computer and use it in GitHub Desktop.
import UIKit
import NotificationCenter
class TodayViewController: UIViewController, NCWidgetProviding {
override func viewDidLoad() {
super.viewDidLoad()
}
@IBAction func onButtonTap(_ sender: Any) {
self.extensionContext?.open(URL(string: "iOS13QuickActions://")!)
}
func widgetPerformUpdate(completionHandler: (@escaping (NCUpdateResult) -> Void)) {
completionHandler(NCUpdateResult.newData)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment