IPhone development – How to get some device [usage] info/statistics

deviceiphonestatisticsuidevice

So, I know that is possible to retrieve some info, like Device name, unique ID, etc. all of them provided by UIDevice Class.

I would like to know if there is a way to get information related with wireless usage (Download and upload), amount of SMS sent, minutes of talking, and any other statistics.

Does anyone has any idea on how to get this info?

Cheers,

Best Answer

No, AFAIK you can't get that information using public APIs. But, just as a side note, the application below shows how to access different kinds of "supposedly private" information in the iPhone by using public APIs:

http://github.com/nst/SpyPhone

Related Topic