Proper method to detect device model (iPhone/iPod Touch)?

南笙酒味 提交于 2019-12-04 18:34:32

It is not a general solution but Apple in many cases provides API calls to check wether specific feature is supported or not. Examples could be:

  • +isSourceTypeAvailable: and +availableMediaTypesForSourceType: in UIImagePickerController allowing you to check if camera is available for the current device.

  • +canSendMail in MFMailComposeViewController to check if device is configured to send mail.

  • -canOpenURL in UIApplication class to check if URL can be opened. For example it can be used to check if it is possible to make a phone call:

    if (![[UIApplication sharedApplication] canOpenURL:
                                     [NSURL URLWithString:@"tel://"]])
        //We cannot make a call - hide call button here
    

If such API calls are available for your purpose I would use them rather then rely on hardcoded string identifiers.

I'm not sure I'd want to generalize that much (ie, there may eventually be an iPod with a camera, and I don't know that the iPhone will ALWAYS be called "iPhone"), but yes, this is the accepted way.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!