判断你的设备是iPhone还是iPod

有时候你的程序需要知道用户使用的设备是iPhone还是iPod。因为有些特性iPod是没有的,比如电话功能。方法很简单:

  1.  
  2. NSString *deviceType = [UIDevice currentDevice ].model;
  3.  

如果你想得到一个本地化的字符串,可以使用以下命令:

  1.  
  2. NSString *deviceType = [UIDevice currentDevice ].modellocalizedModel;
  3. NSLog (@ "type: %@", deviceType );

你可能感兴趣的:(iPhone)