iPad 上横向显示时移动按钮?
我有一个按钮无法正确自动调整大小。当它是横向左或横向右时,我需要它向右移动大约 100 像素。有没有简单的方法可以做到这一点?我知道如何用 javascript 做到这一点,但不知道如何用 Objective C 做到这一点。感谢您的帮助
I have a button that is not autoresizing correctly. I need it moved over about 100 pixels to the right when it is landscape left or landscape right. Is there an easy way to do this? I know how to do it with javascript, but not objective c. Thanks for your help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的控制器中实现 viewDidLayoutSubviews 方法并根据需要定位您的视图。
In your controller implement the viewDidLayoutSubviews method and position your view(s) as you would like.
我有时会按以下方式执行此操作,插入代码以根据需要移动控件。
I sometimes do this the following way, insert the code to move your controls as necessary.