iPhone 中的方向?
在我的应用程序中,我使用方向,我必须根据方向更改控件的大小。我使用了一个标志,并根据该标志更改了控件的大小。但我的疑问是,当用户每次旋转手机时,这个方向都会影响吗?
In my application, I use Orientation, I have to change the size of the controls according to the orientation. I have used a flag and according to that flag I change the size of the controls. But my doubt is, will this orientation affect every time, when user rotates the phone?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为,你最好使用
view.autoresizingMask
而不是更改视图大小和方向。否则,它将改变尺寸,但仍然会再次调用方向尺寸代码。I think, better you use
view.autoresizingMask
instead of changing the view sizes wrt orientation. Otherwise, it will change the size, but still, the orientation-size code will be called again n again.