更改 iPhone 中的视图方向

发布于 2024-10-19 15:50:50 字数 100 浏览 4 评论 0原文


我想在视图显示时更改视图的方向。
例如:
每当用户单击按钮时,都会向用户显示一个新视图。无论方向是什么,我想以横向模式显示此视图。
任何想法......

I want to change a view's orientation as and when it is displayed.
For Example:
Whenever the user clicks a button a new view is displayed to the user. Whatever may be the orientation,I want to display this view in Landscape mode.
Any Ideas.....

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

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

发布评论

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

评论(3

椵侞 2024-10-26 15:50:50

在新视图中添加此功能可将方向更改为横向模式。

- (BOOL)shouldAutorotateToInterfaceOrientationUIIn terfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight );
    } 

Add this function the in the new view to change the Orientation to landscape mode.

- (BOOL)shouldAutorotateToInterfaceOrientationUIIn terfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight );
    } 
只有一腔孤勇 2024-10-26 15:50:50

在您的班级中使用此功能。

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations

   return (interfaceOrientation == UIInterfaceOrientationLandscapeRight ||                        
   interfaceOrientation == UIInterfaceOrientationLandscapeLeft);

}

Use this function in your class.

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations

   return (interfaceOrientation == UIInterfaceOrientationLandscapeRight ||                        
   interfaceOrientation == UIInterfaceOrientationLandscapeLeft);

}
月依秋水 2024-10-26 15:50:50

将其添加到您的视图控制器中

- (BOOL)shouldAutorotateToInterfaceOrientationUIIn terfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight );
    } 

Add this to your view controller

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