IOS obtains the mobile phone model, system version, software name, and software version.

Source: Internet
Author: User

If it is found online, it will be easy to use after record:


[Java]
// Mobile phone serial number
NSString * identifierNumber = [[UIDevice currentDevice] uniqueIdentifier];
NSLog (@ "mobile phone serial number: % @", identifierNumber );
// Mobile phone alias: User-Defined name
NSString * userPhoneName = [[UIDevice currentDevice] name];
NSLog (@ "cell phone alias: % @", userPhoneName );
// Device name
NSString * deviceName = [[UIDevice currentDevice] systemName];
NSLog (@ "device name: % @", deviceName );
// Mobile phone system version
NSString * phoneVersion = [[UIDevice currentDevice] systemVersion];
NSLog (@ "Mobile Phone System Version: % @", phoneVersion );
// Mobile Phone Model
NSString * phoneModel = [[UIDevice currentDevice] model];
NSLog (@ "Mobile Phone model: % @", phoneModel );
// Local model (International region name)
NSString * localPhoneModel = [[UIDevice currentDevice] localizedModel];
NSLog (@ "International region name: % @", localPhoneModel );

NSDictionary * infoDictionary = [[NSBundle mainBundle] infoDictionary];
// Current application name
NSString * appCurName = [infoDictionary objectForKey: @ "CFBundleDisplayName"];
NSLog (@ "Current Application name: % @", appCurName );
// The current application version, for example, 1.0.1
NSString * appCurVersion = [infoDictionary objectForKey: @ "cfbundlepolicversionstring"];
NSLog (@ "current application version: % @", appCurVersion );
// Int type of the current application version number
NSString * appCurVersionNum = [infoDictionary objectForKey: @ "CFBundleVersion"];
NSLog (@ "current application version number: % @", appCurVersionNum );

// Mobile phone serial number
NSString * identifierNumber = [[UIDevice currentDevice] uniqueIdentifier];
NSLog (@ "mobile phone serial number: % @", identifierNumber );
// Mobile phone alias: User-Defined name
NSString * userPhoneName = [[UIDevice currentDevice] name];
NSLog (@ "cell phone alias: % @", userPhoneName );
// Device name
NSString * deviceName = [[UIDevice currentDevice] systemName];
NSLog (@ "device name: % @", deviceName );
// Mobile phone system version
NSString * phoneVersion = [[UIDevice currentDevice] systemVersion];
NSLog (@ "Mobile Phone System Version: % @", phoneVersion );
// Mobile Phone Model
NSString * phoneModel = [[UIDevice currentDevice] model];
NSLog (@ "Mobile Phone model: % @", phoneModel );
// Local model (International region name)
NSString * localPhoneModel = [[UIDevice currentDevice] localizedModel];
NSLog (@ "International region name: % @", localPhoneModel );

NSDictionary * infoDictionary = [[NSBundle mainBundle] infoDictionary];
// Current application name
NSString * appCurName = [infoDictionary objectForKey: @ "CFBundleDisplayName"];
NSLog (@ "Current Application name: % @", appCurName );
// The current application version, for example, 1.0.1
NSString * appCurVersion = [infoDictionary objectForKey: @ "cfbundlepolicversionstring"];
NSLog (@ "current application version: % @", appCurVersion );
// Int type of the current application version number
NSString * appCurVersionNum = [infoDictionary objectForKey: @ "CFBundleVersion"];
NSLog (@ "current application version number: % @", appCurVersionNum );

 


Result:


[Plain]
14:07:47. 622 myDemo [5779: 707] mobile phone serial number: 6685c75e34213be0b04c6ceb72985dc381f0f746
14:07:47. 624 myDemo [5779: 707] Cell Phone alias: "spring sky" iPod
14:07:47. 627 myDemo [5779: 707] device name: iPhone OS
14:07:47. 629 myDemo [5779: 707] Mobile Phone System Version: 5.1.1
14:07:47. 641 myDemo [5779: 707] mobile phone model: iPod touch
14:07:47. 642 myDemo [5779: 707] international region name: iPod touch
14:07:47. 643 myDemo [5779: 707] current application name: myDemo
14:07:47. 645 myDemo [5779: 707] current application version: 1.0.1
14:07:47. 646 myDemo [5779: 707] current application version number: 101

14:07:47. 622 myDemo [5779: 707] mobile phone serial number: 6685c75e34213be0b04c6ceb72985dc381f0f746
14:07:47. 624 myDemo [5779: 707] Cell Phone alias: "spring sky" iPod
14:07:47. 627 myDemo [5779: 707] device name: iPhone OS
14:07:47. 629 myDemo [5779: 707] Mobile Phone System Version: 5.1.1
14:07:47. 641 myDemo [5779: 707] mobile phone model: iPod touch
14:07:47. 642 myDemo [5779: 707] international region name: iPod touch
14:07:47. 643 myDemo [5779: 707] current application name: myDemo
14:07:47. 645 myDemo [5779: 707] current application version: 1.0.1
14:07:47. 646 myDemo [5779: 707] current application version number: 101

 

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.