wj2061
wj2061

Reputation: 6885

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

enter image description here

I want to know what the

TCC`CRASHING_DUE_TO_PRIVACY_VIOLATION

means , and how to fix the problem?

Upvotes: 13

Views: 4244

Answers (3)

russbishop
russbishop

Reputation: 17239

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.

Upvotes: 30

Ilkhom Khodjaev
Ilkhom Khodjaev

Reputation: 99

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.

Upvotes: 2

GKK
GKK

Reputation: 212

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.

Upvotes: 3

Related Questions