我在我的项目中添加了新的 Xib 视图文件。我分配给视图控制器并在我设置的视图控制器中:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
//return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
return YES;
}
但是当应用程序在横向模式下运行时,xib 不在横向模式下。我在 info.plist 文件中设置了 xib 文件也在横向视图中。我需要做什么?有什么帮助吗?