I read somewhere that Siri Shortcuts will change in IOS 13.
Does anyone know if they made changes in Swift with Siri Shortcuts Deep Links?
Now in ios 12 i made a function:
func run(shortcutName: String) {
let url = URL(string: shortcutName)!
UIApplication.shared.open(url,
options: [:],
completionHandler: nil)
}
And to use this i simply call run(shortcutName: shortcutNameString)
Does anyone know if this code will work and run a shortcut on IOS 13?