如何定位特定的 iPhone 版本? [英] How to target a specific iPhone version?

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

问题描述

我有一些代码只想在最新的 iPhone SDK (3.0) 上执行,但是我似乎无法找到一种只针对 3.0 而忽略 2.2.1 等的方法.有一个 ifdef 语句,但它似乎只是覆盖了整个 iPhone:

I've got some code I want to only execute on the latest iPhone SDK (3.0), however I can't seem to figure out a way to target just 3.0 and ignore 2.2.1 etc. There is an ifdef statement, but it just seems to cover the entire iPhone:

#if TARGET_OS_IPHONE

感谢任何帮助.

推荐答案

您可以使用此 #define 来更改您为每个 SDK 构建的内容...

You can use this #define to change what you build for each SDK...

#if __IPHONE_OS_VERSION_MIN_REQUIRED > __IPHONE_2_2
// iPhone 3.0 code here
#endif

并在运行时执行此操作以运行 3.0 及更高版本的代码:

And do this at run-time to run code for 3.0 and above:

float version = [[[UIDevice currentDevice] systemVersion] floatValue];
if (version >= 3.0)
    {
    // iPhone 3.0 code here
    }

这篇关于如何定位特定的 iPhone 版本?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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