gpt4 book ai didi

iOS cordova 插件 : How to send plugin result from ios plugin to javascript in background thread

转载 作者:可可西里 更新时间:2023-11-01 04:35:43 24 4
gpt4 key购买 nike

我有一个扩展 CDVPlugin 的插件类。该插件将从 HTML 端单击按钮调用。之后我使用 UIImagePickerController 拍了两张照片。然后我尝试使用 pluginresult 将这些图像发送到 javascript 回调函数。

在这里,当我尝试一次性发送两张图片时,UI 卡住了一段时间。所以,我想在后台线程中发送结果。而且我应该从 javascript 回调函数接收到它。

有人做过吗?有什么方法可以实现这一点,使 UI 导航更加流畅....

最佳答案

像这样:

    - (void)myPluginMethod:(CDVInvokedUrlCommand*)command
{
// Check command.arguments here.
[self.commandDelegate runInBackground:^{
NSString* payload = nil;
// Some blocking logic...
CDVPluginResult* pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsString:payload];
// The sendPluginResult method is thread-safe.
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
}];
}

关于iOS cordova 插件 : How to send plugin result from ios plugin to javascript in background thread,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16792902/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com