如何检查设备是iPhone 5? [英] How to check the device is iPhone 5?

查看:121
本文介绍了如何检查设备是iPhone 5?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何查看iPhone 5上运行的应用程序是否运行?

How can I check if an application running on iPhone 5 or not and then do something?

推荐答案

你很可能关注窗口大小,而不是make / model,这样做:

You're likely concerned with the window size, not the make/model, this will do:

CGRect screenRect = [[UIScreen mainScreen] applicationFrame];
if (screenRect.size.height == 568)
{
 // this is an iPhone 5+
}

这篇关于如何检查设备是iPhone 5?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆