简体   繁体   中英

Crash on Xcode 8.0 GM iPhone Simulator (iOS 10)

When I run my project on real device , everything works fine.

But when I try to run it on the simulators(iOS 10,iPhone 7 && iPhone 6) ,the app crashed and no debugger messages in the Debugger Output.

The crashed Thread look like this

在此处输入图片说明

I want to know what the

TCC` CRASHING_DUE_TO_PRIVACY_VIOLATION

means , and how to fix the problem?

Are you using a feature that requires user approval (like Camera, Location, etc)? TCC handles access to such resources and a crash in __CRASHING_DUE_TO_PRIVACY_VIOLATION__ usually means you aren't fulfilling the requirements to use that feature.

Make sure you have the usage description key for any of those features in your Info.plist file. iOS 10 now absolutely requires you supply descriptions such as:

<key>NSCameraUsageDescription</key>
<string>For taking selfies!</string>

It is probably working on your device because you previously granted permission. If you delete the app and wait 24 hours (or install on a different device that has never had the app installed before) you'd probably see the same thing on device. (Different services have different policies for whether permission disappears quickly or is saved for a while to allow for reinstalls).

Update:

There is a nice Technical Q&A page on developer.apple.com that describes the frameworks that require a usage description and lists the relevant key(s) for each framework and the class/function/selector(s) involved.

In addition to @russbishop's answer:

You need to do the same thing for accessing gallery as well. Something like:

<key>NSPhotoLibraryUsageDescription</key>
<string>$(PRODUCT_NAME) needs access to use your photo library</string>

PS: Totally opposite to your case, I was getting this same crash on device but not on simulator.

In addition to all above answers:

For me it was the camera and microphone, NSCameraUsageDescription and NSMicrophoneUsageDescription.

If you want to record video you should add both of them.

Thanx Apple.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM