如何更改 UIImageView 的坐标?
我已经制作了一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更改视图的
frame
属性:或者如果您想设置视图中心的位置:
PS 另请注意,根据 Objective-C 命名准则,实例变量名称应以小写字母开头。
Change view's
frame
property:or if you want to set position of view center:
P.S. Note also that per objective-c naming guidelines instance variable names should start with lowercase.