user2798258
user2798258

Reputation: 171

How do i get device data?

can i get any other device related data other than those specified in UIdevice that are in settings of iphone like bluetooth, cellular data on off status ,Total memory,left memory ,batery status...etc

I was able to get the following using UIDevice class : Name Model Localized System, Version, Language ,Country ,Application version, systemName, UUID

like is there any API that helps me to retrieve device data?

What does country in UIdevice signify? used lang version or country in which i live a bit Confused.

Upvotes: 1

Views: 776

Answers (3)

Andrea Mario Lufino
Andrea Mario Lufino

Reputation: 7921

I know this post is old, but if you want to try a Swift solution you can now use Luminous. It's written in Swift 3 and provide a lot of information about the device.

Upvotes: 0

Romain
Romain

Reputation: 3758

Have a look at this open-source iOS library to have an idea of what kind of device information you can get: https://github.com/leverdeterre/iAppInfos.

Upvotes: 0

Dmitry Zhukov
Dmitry Zhukov

Reputation: 1816

You should try ALSystemUtilities library made by Andrea Lufino, which provides information about device's battery, disk, hardware, jailbreak, localization, memory (RAM), network, processor, carrier, accessories.

Upvotes: 1

Related Questions