美文网首页
Cordova App iOS 摄像头打不开

Cordova App iOS 摄像头打不开

作者: 草帽lufei | 来源:发表于2020-03-18 09:58 被阅读0次

Cordova App iOS 摄像头打不开问题解决

使用 cordova-plugin-camera

添加插件 cordova plugin add cordova-plugin-camera
在ios/app-project/app-project-Info.plist中添加

<edit-config target="NSCameraUsageDescription" file="*-Info.plist" mode="merge">
    <string>need camera access to take pictures</string>
</edit-config>

<dict>
  <key>NSCameraUsageDescription</key>
  <string>cameraDesciption</string>
</dict>

参考来源

https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-camera/

相关文章

网友评论

      本文标题:Cordova App iOS 摄像头打不开

      本文链接:https://www.haomeiwen.com/subject/fltqyhtx.html