SiriKit, How to display response for start Workout Intent?

坚强是说给别人听的谎言 提交于 2019-12-01 04:43:49

问题


IntentHandler class:

import Intents

class IntentHandler: INExtension, INStartWorkoutIntentHandling {

    public func handle(startWorkout intent: INStartWorkoutIntent, completion: @escaping (INStartWorkoutIntentResponse) -> Void) {

        let userActivity = NSUserActivity(activityType: NSStringFromClass(INStartWorkoutIntent.self))
        let response = INStartWorkoutIntentResponse(code: .continueInApp, userActivity: userActivity)
        completion(response)
    }

    //MARK: - INStartWorkoutIntentHandling

    func confirm(startWorkout intent: INStartWorkoutIntent, completion: @escaping (INStartWorkoutIntentResponse) -> Void) {

        completion(INStartWorkoutIntentResponse(code: .continueInApp, userActivity: nil))
    }
}

Apple documentation says:

Siri opens the app, but I need to display UI from IntentUI. How to do this?

In other words: How to prepare to display response, load intents UI extension, prepare interface and display it in code?

IntentViewController class:

import IntentsUI

class IntentViewController: UIViewController, INUIHostedViewControlling {

    //MARK: - INUIHostedViewControlling

    func configure(with interaction: INInteraction!, context: INUIHostedViewContext, completion: ((CGSize) -> Void)!) {

        if let completion = completion {
            completion(self.desiredSize)
        }
    }

    var desiredSize: CGSize {
        return self.extensionContext!.hostedViewMaximumAllowedSize
    }
}

Base on this tutorial it is possible indeed.


回答1:


Although Apple says here:

You can provide an Intents UI extension if you are supporting intents in the following domains:
Messaging
Payments
Ride booking
Workouts

I think it is quite impossible, because response responsible for open UI is not prepared for this:

Please look at INSendMessageIntentResponseCode for INSentMessageIntentHandling:

public enum INSendMessageIntentResponseCode : Int {


    case unspecified

    case ready

    case inProgress

    case success

    case failure

    case failureRequiringAppLaunch

    case failureMessageServiceNotAvailable
}

and INStartWorkoutIntentResponse for INStartWorkoutIntentHandling:

public enum INStartWorkoutIntentResponseCode : Int {


    case unspecified

    case ready

    case continueInApp

    case failure

    case failureRequiringAppLaunch

    case failureOngoingWorkout

    case failureNoMatchingWorkout
}

For the second one, there is only .continueInApp, and this is exactly what happens here, opposite to the first one where exists: .success and .inProgress



来源:https://stackoverflow.com/questions/41046532/sirikit-how-to-display-response-for-start-workout-intent

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!