如何检测 costomNavigationbar 中的方向?

发布于 2024-09-06 07:15:23 字数 70 浏览 2 评论 0原文

当我的costomNavigation更改为纵向或横向时,我需要绘制PortraitImage或LandscapeImage。

i need to draw PortraitImage or LandscapeImage when my costomNavigation has been change to portrait or landscape.

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

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

发布评论

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

评论(2

椒妓 2024-09-13 07:15:23

您需要在 UIViewController 中重写 willRotateToInterfaceOrientation:duration: 。每次应用程序改变方向时,这都会给您打电话。

You need to override willRotateToInterfaceOrientation:duration: in your UIViewController. This will give you a call every time the app changes its orientation.

猫腻 2024-09-13 07:15:23

您可以使用 UIDevice 类来检测方向,如下所示:

http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIDevice_Class/Reference/UIDevice.html#//apple_ref/occ/ instp/UIDevice/orientation

您需要使用这些方法

- (void)beginGeneratingDeviceOrientationNotifications  

- (void)endGeneratingDeviceOrientationNotifications  

这应该可以工作。

You can detect orientation by using the UIDevice Class, as shown here:

http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIDevice_Class/Reference/UIDevice.html#//apple_ref/occ/instp/UIDevice/orientation

You need to use the methods

- (void)beginGeneratingDeviceOrientationNotifications  

and

- (void)endGeneratingDeviceOrientationNotifications  

That should probably work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文