我怎样才能阻止iPad的方向改变?

时间:2011-02-21 14:45:35

标签: ipad mobile-safari screen-orientation

我正在使用ipad。在我的项目中,它需要以纵向,而不是风景来看。现在如果我转动我的ipad,我的项目也会改为横向模式。

但我需要的是,如果有人也转向他们的ipad,我的页面视图不应该变成风景。总的来说,我的网页应该处于纵向模式。为此我该如何停止方向改变?

并使我的网页视图始终处于人像状态?

任何人帮助我?

1 个答案:

答案 0 :(得分:0)

您希望像这样实施shouldAutorotateToInterfaceOrientation

- (BOOL) shouldAutorotateToInterfaceOrientation:(UIDeviceOriention)orientation{
  if(orientation == UIInterfaceOrientationPortrait){
     return YES;
  }
  return NO;
}