iPad 上横向显示时移动按钮?

发布于 2024-12-11 15:17:50 字数 126 浏览 0 评论 0原文

我有一个按钮无法正确自动调整大小。当它是横向左或横向右时,我需要它向右移动大约 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 技术交流群。

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

发布评论

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

评论(2

深海夜未眠 2024-12-18 15:17:50

在您的控制器中实现 viewDidLayoutSubviews 方法并根据需要定位您的视图。

In your controller implement the viewDidLayoutSubviews method and position your view(s) as you would like.

り繁华旳梦境 2024-12-18 15:17:50

我有时会按以下方式执行此操作,插入代码以根据需要移动控件。

- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration{

  if (self.interfaceOrientation == UIDeviceOrientationPortrait || self.interfaceOrientation == UIDeviceOrientationPortraitUpsideDown)
    {
    //setup your interface for portrait
    }

else

  if (self.interfaceOrientation == UIDeviceOrientationLandscapeLeft || self.interfaceOrientation == UIDeviceOrientationLandscapeRight)
  {
  //setup your interface for landscape
  // your code to move buttons etc would go here
  }
}

I sometimes do this the following way, insert the code to move your controls as necessary.

- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration{

  if (self.interfaceOrientation == UIDeviceOrientationPortrait || self.interfaceOrientation == UIDeviceOrientationPortraitUpsideDown)
    {
    //setup your interface for portrait
    }

else

  if (self.interfaceOrientation == UIDeviceOrientationLandscapeLeft || self.interfaceOrientation == UIDeviceOrientationLandscapeRight)
  {
  //setup your interface for landscape
  // your code to move buttons etc would go here
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文