Skip to content

DeviceGuru is a simple lib (Swift) to know the exact type of the device, e.g. iPhone 6 or iPhone 6s. For Objective-C please visit DeviceUtil (https://github.com/InderKumarRathore/DeviceUtil)

License

Notifications You must be signed in to change notification settings

GE-N/DeviceGuru

 
 

Repository files navigation

DeviceGuru

DeviceGuru is a simple lib (Swift) to know the exact type of the device, e.g. iPhone 6 or iPhone 6s. For Objective-C please visit DeviceUtil

  • Easy to use
  • Light weight

Installation

Using pods

Copy the pod dependency and add that to your pod file. e.g.

pod 'DeviceGuru'

then run the below command in terminal

pod install
Using without pods

Drag and drop

DeviceGuru.swift
Hardware.swift
DeviceList.plist

files in your project

Usage

If you install from CocoaPods, you have to import the module. If you used drag and drop then there is no need of import

import DeviceGuru 

In your code:

let deviceName = DeviceGuru.hardware()
let deviceCode = DeviceGuru.hardwareString()
print("\(deviceName) - \(deviceCode)") //Ex: iphone_7_PLUS - iPhone9,2

Device codes

iPhone
Device hardware() hardwareString()
iPhone 2G iphone_2G iPhone1,1
iPhone 3G iphone_3G iPhone1,2
iPhone 3GS iphone_3GS iPhone2,1
iPhone 4 iphone_4 iPhone3,1
iPhone 4 iphone_4 iPhone3,2
iPhone 4 CDMA iphone_4_CDMA iPhone3,3
iPhone 4s iphone_4S iPhone4,1
iPhone 5 iphone_5 iPhone5,1
iPhone 5 CDMA GSM iphone_5_CDMA_GSM iPhone5,2
iPhone 5c iphone_5C iPhone5,3
iPhone 5c CDMA GSM iphone_5C_CDMA_GSM iPhone5,4
iPhone 5s iphone_5S iPhone6,1
iPhone 5s CDMA GSM iphone_5S_CDMA_GSM iPhone6,2
iPhone 6 Plus iphone_6_PLUS iPhone7,1
iPhone 6 iphone_6 iPhone7,2
iPhone 6s Plus iphone_6S_PLUS iPhone8,2
iPhone 6s iphone_6S iPhone8,2
iPhone SE iphone_SE iPhone8,4
iPhone 7 iphone_7 iPhone9,1
iPhone 7 Plus iphone_7_PLUS iPhone9,2
iPhone 7 iphone_7 iPhone9,3
iPhone 7 Plus iphone_7_PLUS iPhone9,4
iPod
Device hardware() hardwareString()
iPod Touch 1G ipod_TOUCH_1G iPod1,1
iPod Touch 2G ipod_TOUCH_2G iPod2,1
iPod Touch 3G ipod_TOUCH_3G iPod3,1
iPod Touch 4G ipod_TOUCH_4G iPod4,1
iPod Touch 5G ipod_TOUCH_5G iPod5,1
iPad
Device hardware() hardwareString()
iPad ipad iPad1,1
iPad 3G ipad_3G iPad1,2
iPad 2 Wifi ipad_2_WIFI iPad2,1
iPad 2 ipad_2 iPad2,2
iPad 2 CDMA ipad_2_CDMA iPad2,3
iPad 2 ipad_2 iPad2,4
iPad Mini WIFI ipad_MINI_WIFI iPad2,5
iPad 3 WIFI ipad_3_WIFI iPad3,1
iPad 3 CDMA ipad_3_WIFI_CDMA iPad3,2
iPad 3 ipad_3 iPad3,3
iPad 4 WIFI ipad_4_WIFI iPad3,4
iPad 4 ipad_4 iPad3,5
iPad 4 GSM CDMA ipad_4_GSM_CDMA iPad3,6
iPad Air ipad_AIR_WIFI iPad4,1
iPad Air GSM ipad_AIR_WIFI_GSM iPad4,2
iPad Air CDMA ipad_AIR_WIFI_CDMA iPad4,3
iPad Mini Retina ipad_MINI_RETINA_WIFI iPad4,4
iPad Mini Retina CDMA ipad_MINI_RETINA_WIFI_CDMA iPad4,5
iPad Mini Retina Cellular CN ipad_MINI_RETINA_WIFI_CELLULAR_CN iPad4,6
iPad Mini 3 ipad_MINI_3_WIFI iPad4,7
iPad Mini 3 Cellular ipad_MINI_3_WIFI_CELLULAR iPad4,8
iPad Mini 4 ipad_MINI_4_WIFI iPad5.1
iPad Mini 4 Cellular ipad_MINI_4_WIFI_CELLULAR iPad5.2
iPad Air 2 ipad_AIR_2_WIFI iPad5.3
iPad Pro 9.7 Wifi Only ipad_PRO_97_WIFI iPad6,3
iPad Pro 9.7 Wifi + Cellular ipad_PRO_97_WIFI_CELLULAR iPad6,4
iPad Pro ipad_PRO_WIFI iPad6,7
iPad Pro Cellular ipad_PRO_WIFI_CELLULAR iPad6,8
Simulator
Device hardware() hardwareString()
Simulator simulator i386
Simulator simulator x86_64
Simulator simulator hasPrefix("iPhone")
Simulator simulator hasPrefix("iPod")
Simulator simulator hasPrefix("iPad)

Development

Want to contribute? Great!

Send the pull request :)

License

DeviceGuru is available under the MIT license. See the LICENSE file for more info.

About

DeviceGuru is a simple lib (Swift) to know the exact type of the device, e.g. iPhone 6 or iPhone 6s. For Objective-C please visit DeviceUtil (https://github.com/InderKumarRathore/DeviceUtil)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 58.4%
  • Shell 34.4%
  • Ruby 3.9%
  • Objective-C 3.3%