如何停止 iPad 中的方向变化?

发布于 2024-10-18 07:35:33 字数 189 浏览 0 评论 0原文

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

但我需要的是,如果有人也把他们的ipad也打开,我的页面视图不应该变成横向。这意味着我的网页应该始终处于纵向模式。为此我怎样才能停止方向改变?

并使我的网页视图始终处于纵向?

有人帮我吗?

i am working with ipad. in my project, it need to see in portrait, not landscape. Now if i turn my ipad, my project as well changing to landscape mode.

But what i need is, if anyone turn they ipad also, my page view should not turn into landscape. than mean always my web page should be in portrait mode. for this how can i stop the orientation change?

and make my web view always in portrait?

any one help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑饮青盏花 2024-10-25 07:35:33

您想要像这样实现shouldAutorotateToInterfaceOrientation:

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

You want to implement shouldAutorotateToInterfaceOrientation like this:

- (BOOL) shouldAutorotateToInterfaceOrientation:(UIDeviceOriention)orientation{
  if(orientation == UIInterfaceOrientationPortrait){
     return YES;
  }
  return NO;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文