为 UIResponder 添加两个监听器
我在 UIWindow 中添加了两个视图控制器作为子视图。现在的问题是,其中一个视图获得视图旋转调用,但第二个是没有获得视图更改方向的调用。 现在我的问题是我们如何获得 UIWindow 中添加的两个不同视图控制器的更改方向调用。
I have two view Controllers added as a sub-view in the UIWindow. Now the problem is one of the view gets view rotation calls but second is not getting calls for view changing orientation.
Now my problem is how we can get change orientation call for two different view controllers added in UIWindow.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
UIWindow
仅向其rootViewController
发送旋转消息。如果您希望其他视图控制器接收它们,您有两个选择:UIWindow
only sends rotation messages to itsrootViewController
. If you want the other view controller to receive them, you have two options:rootViewController
send the rotation messages to the other view controller.注册设备方向。
检查方法,
Register for device orientation.
check in the method ,