如何执行运行时检查以查看是否可以使用UIGraphicsBeginImageContextWithOptions
仅从 iOS 4 开始可用的 .
我知道我可以检查[[UIDevice currentDevice] systemVersion]
,但 Apple 建议使用类似NSClassFromString()
or的东西respondsToSelector:
。有respondsToSelector:
for C 函数吗?
如何执行运行时检查以查看是否可以使用UIGraphicsBeginImageContextWithOptions
仅从 iOS 4 开始可用的 .
我知道我可以检查[[UIDevice currentDevice] systemVersion]
,但 Apple 建议使用类似NSClassFromString()
or的东西respondsToSelector:
。有respondsToSelector:
for C 函数吗?
这是我一直在使用的另一个选项。
C函数是指针。如果您“弱”链接到UIKit
框架,则在 iOS 3 上,函数指针将简单地为NULL
,因此您可以通过执行以下操作来测试函数是否存在:
if (UIGraphicsBeginImageContextWithOptions)
{
// On iOS 4+, use the main screen's native scale factor (for iPhone 4).
UIGraphicsBeginImageContextWithOptions(size, NO, 0.0);
}
else
{
UIGraphicsBeginImageContext(size);
}
另请参阅:如何在 Xcode 4 上弱链接框架?
What you're probably interested in here is weak linking. (See "Listing 3-2: Checking the availability of a C function".)
这就是我要做的:
if ([mainScreen respondsToSelector:@selector(scale)]) {
UIGraphicsBeginImageContextWithOptions(newSize, NO, [[UIScreen mainScreen] scale]);
} else {
UIGraphicsBeginImageContext(newSize);
}
我认为这已经足够好了,但是如果您有更好的建议,请回答。