我正在我的故事板中使用导航控制器,但是当我将模拟器置于横向时,我的应用程序始终采用纵向格式。为什么? =(
答案 0 :(得分:1)
更改
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
要
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}
另外,请确保在项目设置中将“支持的设备方向”设置为允许横向显示。