Xcode 方向 UIView
我想对横向模式使用与纵向模式不同的 UIView,这可能吗?如果可以,我该怎么做?
I would like to use a different UIView for Landscape than for Portrait mode, is that possible and if so how do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 .h 文件中使用一个全局变量“currentOrientationView”。
当您的设备要从任何界面方向旋转时,它将调用“WillRotateToInterfaceOrientation:”,此方法有一个参数,用于告知设备将旋转到的界面方向,因此将您的条件放入此方法中并设置值“currentOrientationView”,相应的视图为:
Take a global variable say "currentOrientationView" in .h file.
When ever your device is going to rotate from any interface orientation it will call "WillRotateToInterfaceOrientation:",this method has a parameter that tells the interface orientation to which the device is going to rotate so put your condition in this method and set the value of "currentOrientationView" with corresponding view as:
您必须使用 shouldAutorotatetointerface 方向方法,
在这个方法中,您必须放置类似
[self.addSubview:newView];的代码
you must use the method shouldAutorotatetointerface orientation,
and inside this method you have to put code like
[self.addSubview:newView];
使用 willRotateToInterfaceOrientation 交换视图。对于您想要支持的所有方向,shouldAutorotateToInterfaceOrientation 应该返回 YES。
Use willRotateToInterfaceOrientation to exchange views. shouldAutorotateToInterfaceOrientation should return YES for all orientations you'd like to support.