向下移动按钮

发布于 2024-11-25 07:58:32 字数 75 浏览 2 评论 0原文

如何向下移动按钮位置?我有一个 UISwitch 当它打开时,它会显示一些东西,但这会覆盖我的一个按钮。如何将按钮向下移动以使其不重叠?

How do I shift a button location down? I have a UISwitch when its on, which will then display some stuffs, but that would cover one of my button. How do I shift the button down so that it's not overlapped?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

厌倦 2024-12-02 07:58:32

将按钮的框架设置到新位置。例如,这会将按钮向下移动 100 像素:

myButton.frame = CGRectOffset(myButton.frame, 100.0, 0);

Set the frame of the button to the new location. For instance, this will move the button down 100 pixels:

myButton.frame = CGRectOffset(myButton.frame, 100.0, 0);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文