I am trying to show the view from my storyboard when starting a workout in my app. But apparently I am doing something wrong because the view gets never loaded. I have put the INStartWorkoutIntent in the plists of both extensions but the func configure(with interaction: INInteraction!, context: INUIHostedViewContext, completion: ((CGSize) -> Void)!)
method never gets called. Should I make some specific call so that the view shows? The resolve
and handle
method in the other extension get called.
Asked
Active
Viewed 430 times
1

surToTheW
- 772
- 2
- 10
- 34
-
The same thing works with messages intents btw. – surToTheW Oct 20 '16 at 11:14
-
the same problem here... Finally someone asked for this also... – Bartłomiej Semańczyk Dec 27 '16 at 07:31
-
I asked the same here: http://stackoverflow.com/q/41046532/2725435 – Bartłomiej Semańczyk Dec 27 '16 at 07:33
1 Answers
2
You cannot load custom UI for INStartWorkoutIntent as You can provide an Intents UI extension if you are supporting intents in the following domains: Messaging, Payments, Ride booking, Workouts.

Naga Syam
- 126
- 4
-
INStartWorkoutIntent is in the domain Workouts, but as it seems it doesn't support Intent UI Extension or it's some bug or something – surToTheW Nov 09 '16 at 15:56
-