【发布时间】:2026-01-23 05:55:01
【问题描述】:
嘿,我尝试设置允许的方向,但它不起作用。
AppDelegate.m:
- (NSUInteger)supportedInterfaceOrientations
{
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0){
return UIInterfaceOrientationMaskAll;
}else{
return UIInterfaceOrientationMaskPortrait;
}
}
在我的 Info.plist 中,我激活了所有方向。
【问题讨论】:
标签: ios objective-c xcode ios7 ios8