我使用情节提要创建了 UIViewController 并将其链接到 UIViewController 类。
我想让我的 UIViewController 只支持肖像方向,我尝试了打击代码,但它似乎不起作用。我的 UIViewController 仍然旋转。
我需要更改情节提要中的任何属性吗?
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return ((interfaceOrientation == UIInterfaceOrientationPortrait) || (interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown));
}