如何更改 UIImageView 的坐标?

发布于 2024-10-30 08:15:29 字数 226 浏览 4 评论 0原文

我已经制作了一个 UIImageView 显示我在 Interface Builder 中选择的图像。

在代码中,我想找到一种在程序期间更改此图像视图的 x 和 y 坐标的方法。

可以这样做吗?

我已经创建了一个变量

IBOutlet UIImageView *Alan;

,但不知道如何处理它。

I have made a UIImageView show an image of my choosing in Interface Builder.

In code, I want to find a way to change the x and y coordinates of this image view, during the program.

Is it possible to do that?

I've already made a variable

IBOutlet UIImageView *Alan;

but am not sure what to do with it.

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

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

发布评论

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

评论(1

小梨窩很甜 2024-11-06 08:15:29

更改视图的 frame 属性:

Alan.frame = (CGRect){{newX, newY}, Alan.frame.size};
// same as 
// Alan.frame = CGRectMake(newX, newY, Alan.frame.size.width, Alan.frame.size.height);

或者如果您想设置视图中心的位置:

Alan.center = CGPointMake(newX, newY);

PS 另请注意,根据 Objective-C 命名准则,实例变量名称应以小写字母开头。

Change view's frame property:

Alan.frame = (CGRect){{newX, newY}, Alan.frame.size};
// same as 
// Alan.frame = CGRectMake(newX, newY, Alan.frame.size.width, Alan.frame.size.height);

or if you want to set position of view center:

Alan.center = CGPointMake(newX, newY);

P.S. Note also that per objective-c naming guidelines instance variable names should start with lowercase.

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