如何在 UIKit 中移动项目位置

发布于 2024-09-14 11:40:15 字数 179 浏览 3 评论 0原文

抱歉,伙计们,我讨厌问愚蠢的问题,但我已经在网上认真搜索了几天但没有结果。我用 item.bounds 或类似方法尝试过的每种方法都惨败。我只是想在某种情况下移动一些元素,例如 UILabelUIButton 几个像素。只要简单地指出我错过的教程就会很有帮助。

Sorry guys, I hate asking dumb questions but I have seriously been searching for days online to no avail. Every method I've tried with item.bounds or the like has failed miserably. I'm just trying to move some elements, like a UILabel and a UIButton over a few pixels under a certain circumstance. Just a simple point to a tutorial that I missed would be so helpful.

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

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

发布评论

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

评论(2

忆梦 2024-09-21 11:40:15

一般来说,框架就是你想要的。它是根据父视图坐标指定的。因此,如果我的视图框架是 CGRectMake(10.f,20.f,50.f,60.f) ,它会出现在父级坐标中 x=10 y=20 处,宽度为 50,高度为 60 .

UIView* someView ...

CGRect someViewFrame = someView.frame;
someView.frame.origin.y += 10;
someView.frame = someViewFrame;

将视图向下移动 10 像素。

如果您只想移动超级视图中的视图,请保留边界。

Generally frame is what you want. It is specified in terms of parent view coordinates. So if my view's frame is CGRectMake(10.f,20.f,50.f,60.f) it appears in the parent's coordinates at x=10 y=20 with width 50 and height 60.

UIView* someView ...

CGRect someViewFrame = someView.frame;
someView.frame.origin.y += 10;
someView.frame = someViewFrame;

moves the view down by 10 pixels.

If you just want to move the view in a superview, leave bounds alone.

默嘫て 2024-09-21 11:40:15

这个示例应该很有用。

This example should be useful.

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