In the code, how can I determine whether the current device is iPhone 4/4S or iPhone 5?

Source: Internet
Author: User
+ ( NSString *)deviceString {      // # 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 4S" ;      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; }

In the code, how can I determine whether the current device is iPhone 4/4S or iPhone 5?

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.