ios9 - (NSUInteger)supportedInterfaceOrientations 警告

来源:互联网 发布:excel多表格数据联动 编辑:程序博客网 时间:2024/06/05 22:21


#if __IPHONE_OS_VERSION_MAX_ALLOWED < __IPHONE_9_0

- (NSUInteger)supportedInterfaceOrientations

#else

- (UIInterfaceOrientationMask)supportedInterfaceOrientations

#endif

{

    return UIInterfaceOrientationMaskPortrait;

}


1 0