你如何改变UIImageView的坐标?

时间:2011-04-04 21:17:42

标签: objective-c interface-builder uiimageview coordinates

我已经在{1}}中显示了我在Interface Builder中选择的图像。

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

有可能吗?

我已经制作了一个变量

UIImageView

但我不知道该怎么做。

1 个答案:

答案 0 :(得分:4)

更改视图的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);

P.S。另请注意,每个objective-c命名指南实例变量名称应以小写开头。