Determine whether the device is iphone5

Source: Internet
Author: User

1. when full screen width is involved in the program, do not write 320 and 480 # define Screen_height [[UIScreen mainScreen] bounds] In the code during initialization. size. height # define Screen_width [[UIScreen mainScreen] bounds]. size. width 2. use the macro definition method to determine # define iPhone5 ([UIScreen instancesRespondToSelector: @ selector (currentMode)]? CGSizeEqualToSize (CGSizeMake (640,113 6), [[UIScreen mainScreen] currentMode]. size): NO) if (iPhone5) {/* Code operation */} else {/* Code operation */} Find another method on the Internet: + (NSString *) deviceString {// required # import "sys/utsname. h "struct utsname systemInfo; uname (& systemInfo); NSString * deviceString = [NSString stringWithCString: systemInfo. machine encoding: NSUTF8StringEncoding]; if ([deviceString isEqualToString: @ "iPhone1, 1"]) return @ "iPhone 1G"; if ([deviceString isEqualToString: @ "iPhone1, 2 "]) return @" iPhone 3G "; if ([deviceString isEqualToString: @" iPhone2, 1 "]) return @" iPhone 3GS "; if ([deviceString isEqualToString: @ "iPhone3, 1"]) return @ "iPhone 4"; if ([deviceString isEqualToString: @ "iPhone4, 1"]) return @ "iPhone 4 S "; if ([deviceString isEqualToString: @ "iPhone5, 2"]) return @ "iPhone 5"; if ([deviceString isEqualToString: @ "iPhone3, 2"]) return @ "Verizon iPhone 4"; if ([deviceString isEqualToString: @ "iPod1, 1"]) return @ "iPod Touch 1G"; if ([deviceString isEqualToString: @ "iPod2, 1"]) return @ "iPod Touch 2G"; if ([deviceString isEqualToString: @ "iPod3, 1"]) return @ "iPod Touch 3G "; if ([deviceString isEqualToString: @ "iPod4, 1"]) return @ "iPod Touch 4G"; if ([deviceString isEqualToString: @ "iPad1, 1"]) return @ "iPad"; if ([deviceString isEqualToString: @ "iPad2, 1"]) return @ "iPad 2 (WiFi)"; if ([deviceString isEqualToString: @ "iPad2, 2 "]) return @" iPad 2 (GSM) "; if ([deviceString isEqualToString: @" iPad2, 3 "]) return @" iPad 2 (CDMA )"; if ([deviceString isEqualToString: @ "i386"]) return @ "Simulator"; if ([deviceString isEqualToString: @ "x86_64"]) return @ "Simulator "; NSLog (@ "NOTE: Unknown device type: % @", deviceString); return deviceString ;}

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.