美文网首页
iOS APP运行奔溃及解决办法总结<待更新>

iOS APP运行奔溃及解决办法总结<待更新>

作者: H_A_N | 来源:发表于2017-09-23 16:50 被阅读0次

    1.问题
    This app has crashed because it attempted to access privacy-sensitive data without a usage description. The app’s Info.plist must contain an NSPhotoLibraryUsageDescription key with a string value explaining to the user how the app uses this data.不难翻译,大体意思就是这个App缺少一个获取私有(敏感)数据的权限描述,需要我们在info.plist文件中必须含有一个名字叫做NSPhotoLibraryUsageDescription的值来解释为什么应用需要使用这个数据,没错,获取相册资源的键值就是NSPhotoLibraryUsageDescription

    解决办法:
    <key>NSPhotoLibraryUsageDescription</key><string>App需要您的同意,才能访问相册</string>
    <key>NSCameraUsageDescription</key><string>App需要您的同意,才能访问相机</string>

    相关文章

      网友评论

          本文标题:iOS APP运行奔溃及解决办法总结<待更新>

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