IOS Mobile Phone number, mobile phone name, version, etc.

Source: Internet
Author: User

IOS Mobile Phone number, mobile phone name, version, etc.

NSString * identifierNumber = [[UIDevice currentDevice]. identifierForVendor uuuidstring];
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 );

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.