我尝试了一些代码和项目设置,但应用程序仍在改变方向。如何才能进行纵向定位?
XCode版本:7.3.1,应用程序部署目标:6.0
在“设置设备方向”中仅选择“纵向”。
Info.plist文件:
.m文件中的代码:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
注意:我没有任何Objective-C经验。