如何在 UIKit 中移动项目位置
抱歉,伙计们,我讨厌问愚蠢的问题,但我已经在网上认真搜索了几天但没有结果。我用 item.bounds
或类似方法尝试过的每种方法都惨败。我只是想在某种情况下移动一些元素,例如 UILabel
和 UIButton
几个像素。只要简单地指出我错过的教程就会很有帮助。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一般来说,框架就是你想要的。它是根据父视图坐标指定的。因此,如果我的视图框架是 CGRectMake(10.f,20.f,50.f,60.f) ,它会出现在父级坐标中 x=10 y=20 处,宽度为 50,高度为 60 .
将视图向下移动 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.moves the view down by 10 pixels.
If you just want to move the view in a superview, leave bounds alone.
这个示例应该很有用。
This example should be useful.