我已将纵向方向添加到.plist for iPad和普通,但它仍然没有围绕顶部肖像按钮:这是我在firstviewcontroller.m中的代码
// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return YES;
}
答案 0 :(得分:1)
将它放在所有的视图控制器中,可能你有一个基本的和一个覆盖的每个iPhone / iPad。每个人都必须返回YES(或YES / NO,具体取决于你想要支持的方向)。