给出像这样的iOS功能:
+ (UIView*) aView
{
UIScreen *screen = [UIScreen mainScreen];
CGRect rect = screen.applicationFrame;
return [[UIView alloc] initWithFrame:rect];
}
这无法在tvOS下编译,因为未定义UIScreen.applicationFrame。什么是专门检查tvOS的最佳预处理器符号?
答案 0 :(得分:3)
TARGET_OS_TV
的 TargetConditionals.h