访问iPhone照片库时,iOS webview应用程序崩溃

时间:2016-12-09 08:36:55

标签: ios iphone uiwebview

访问iPhone照片库时,iOS webview应用程序崩溃

我试图使用wordpress媒体库上传照片, 点击上传按钮后, 从iphone弹出两个选项:iPhone照片库或云端的照片。 点击iphone照片库选项后,该应用程序退出。

任何想法都是赞赏的

1 个答案:

答案 0 :(得分:4)

您需要在应用中添加照片库权限

打开info.plist文件添加以下xml代码

<key>NSPhotoLibraryUsageDescription</key>
<string>Allow to access photo library.</string>

如果您的应用使用相机,则还要在info.plist文件

中添加此代码
<key>NSCameraUsageDescription</key>
<string>Allow to access camera.</string>

如果您不知道如何在info.plist代码中打开xml,请检查此图片 enter image description here