【发布时间】:2014-05-22 06:16:30
【问题描述】:
我正在为 IOS 构建一个Phonegap 应用程序。我使用Cordova 相机plugin 上传个人资料图片。我的示例代码是:
navigator.camera.getPicture(that.imageDataSuccessCallback, that.imageDataErrorCallback, { quality: 10, destinationType: 1, encodingType: 0, allowEdit: true, correctOrientation: true, sourceType:0 });
当我点击该特定按钮时,我收到警告为
THREAD WARNING: ['Camera'] took '290.006104' ms. Plugin should use a background thread.
它阻止了我的应用程序。有人可以建议如何解决这个问题吗?
【问题讨论】:
标签: ios cordova camera phonegap-plugins cordova-plugins