最近在做一个二维码的扫描功能的时候,在iphone 7上面运行出现闪退,并且在xcode 的lldb调试器中出现了以下的英文:
This app has crashed because it attempted to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSCameraUsageDescription key with a string value explaining to the user how the app uses this data.
谷歌翻译了一下,才知道是需要添加一个“NSCameraUsageDescription”的key、value的描述,这个也是一个iOS10开发中需要注意的地方,因为扫描二维码,需要启用相机,所以我们必须在info.plist文件中添加以下描述:
总结:现在苹果app上架的时候,对iOS10中需要添加的描述要求非常严格,一不小心,就会审核不通过,需要我们多多关注这些细节。