Open Containing app from Crypto Token Kit (CTK) extension iOS

Hi!

I want to open the containing app from ctk extension because i need to ask for parameters related to the signature operation. The beginAuthFor: method is not enough, because i need more input than just the password.

I can do this on MacOS with NSWorkspace.shared.open(url), but on iOS UIApplication.shared.open " is unavailable in application extensions for iOS"

Any Suggestions?

Accepted Reply

Standard practice on iOS is to post a local notification. When the user taps on that, it brings them to the app.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

  • Greate answer, thank you!

Add a Comment

Replies

Standard practice on iOS is to post a local notification. When the user taps on that, it brings them to the app.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

  • Greate answer, thank you!

Add a Comment