Reputation: 341
Is there a way to read iOS logs that are under Settings>Privacy>Analytics>Analytics Data with some swift (or eventually objective c) code?
Upvotes: 3
Views: 699
Reputation: 3020
It is not possible to access the analytics data / crash logs of your device from within your application. There are only two ways to get those data:
Here is a great article, which describes how to get crash logs and what to do with them: https://www.raywenderlich.com/23704/demystifying-ios-application-crash-logs
Upvotes: 2