判断当前设备是否是ipad

判断当前设备是否是iPad

1.不靠谱的判断
  [UIDevice currentDevice].userInterfaceIdiom==UIUserInterfaceIdiomPad

  判断是否是iPad不靠谱,如果是只支持iPhone的程序,在iPad上运行了,这个判断是NO。

2.靠谱的判断  

  [[UIDevice currentDevice].model isEqualToString:@"iPad"]