0

iPhone 具有仅用于纵向的方向锁定。所以我在我的 UI 中添加了一个横向锁定按钮,将landscape_orientation_locked变量设置为YESor NO。然后在shouldAutorotateToInterfaceOrientation:我基本上做以下事情:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
  if (landscape_orientation_locked)
    return (UIInterfaceOrientationIsLandscape(interfaceOrientation));

  return YES;
}

这工作正常,除了一种情况。当我将 iPhone 转为横向时,切换方向锁定按钮,将 iPhone 旋转到纵向并再次按下该按钮。界面方向不会从横向变为纵向。iPhone必须先变成横向然后纵向才能触发界面旋转。

所以我的问题是:我能以某种方式“强制”iPhone 重新评估它的当前方向吗?

4

1 回答 1

0

呈现然后关闭模拟模式视图控制器应该强制进行方向检查。

编辑:发现我第一次读到的问题:

是否有记录的方法来设置 iPhone 方向?

于 2012-04-24T15:28:30.497 回答