0

我想将 Sirikit 集成到我的颤振应用程序中。因此,我必须建立一个MethodChannel用于主机和客户端之间的通信。我希望 iOS 端调用一个颤振函数,该响应是 Siris 的答案。这是颤振的一面:

void nativeFunc() {
  const platform = const MethodChannel("flutter.siri");

  Future<dynamic> _handleMethod(MethodCall call) async {
    if (call.method == "message") {
      return api_request("Physics", call.arguments, 50);
    }
  }

  platform.setMethodCallHandler(_handleMethod);
}

然后我必须在iOS端指定methodChannel:

//AppDelegate.swift
import UIKit
import Flutter

@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
  override func application(
    _ application: UIApplication,
    didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
  ) -> Bool {
    let controller : FlutterViewController = window?.rootViewController as! FlutterViewController
    let methodChannel = FlutterMethodChannel(name:"flutter.siri")

    
    GeneratedPluginRegistrant.register(with: self)
    return super.application(application, didFinishLaunchingWithOptions: launchOptions)
  }
}

//IntentHandler.swift
    func handle(intent: INSendMessageIntent, completion: @escaping (INSendMessageIntentResponse) -> Void) {
        // Implement your application logic to send a message here.
        
        let userActivity = NSUserActivity(activityType: NSStringFromClass(INSendMessageIntent.self))
        let response = methodChannel.invokeMethod()//this should invoke the MethodChannel-function from Flutter
        
        
        completion(response)
    }

我不是 Ios 开发人员,所以我不知道如何实际执行此操作。现在的问题是IntentHandler.swift -File无权访问方法通道数据,因为它是在另一个文件中声明的。我的 Intenthandler 文件如何调用颤振方法并用 Siri 响应?

4

1 回答 1

1

我面临着类似的问题,我能够让它发挥作用。

问题是 Siri 意图位于不同的目标中,因为它们可以在需要时在后台运行,因此使用方法通道的通信实现起来非常复杂(如果可能的话)。

我的方法是使用颤振扩展 HomeWidget https://pub.dev/packages/home_widget

由于 Home 小部件也使用不同的目标,并且此扩展使用 App 组和 UserDefaults 打开一个通信通道,我们可以使用相同的通信通道将数据发送到我们的 Siri Intent。

只需按照 HomeWidget 扩展的配置指南,将 AppGroups 功能添加到您的跑步者目标和您的 Siri 意图。确保在所有这些中使用相同的组 ID,包括在颤振方面:

HomeWidget.setAppGroupId('YOUR_GROUP_ID');

然后你可以使用扩展方法在flutter和swift之间发送和接收数据。

于 2021-07-23T19:17:30.480 回答