iOS 中怎么修改 UIImageView的frame

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS 中怎么修改 UIImageView的frame相关的知识,希望对你有一定的参考价值。

参考技术A UIImageView *imageView = [[UIImageView alloc] init];
imageView.frame = CGRectMake(x,y,width,heigth);//设置frame,修改也就是重设
或直接uiimagview有个image的属性,吧图片的宽和高放大。直接给uiimageiview的大小就可以
参考技术B UIImageView *imageView = [[UIImageView alloc] init];
imageView.frame = CGRectMake(x,y,width,heigth);//设置frame,修改也就是重设
参考技术C 直接设置他的frame就好了。或者直接uiimagview有个image的属性,吧图片的宽和高放大。直接给uiimageiview的大小就可以 参考技术D ios中任意UIView的frame都可以直接通过修改frame来改变位置和大小。

UIImageView *imageView ;
.....

......
NSRect frame = imageView.frame; //老的frame
frame = CGRectMake(x,y,width,heigth);//新的frame
imageView.frame = frame;
第5个回答  2016-03-19 xib和sb直接拉约束 代码修改imageview.frame = cgrectmake(x,y,width,height); 如果有自动布局就用自动布局的方法 我的就是类似于[imageview auto....]这种直接就可以调用

以上是关于iOS 中怎么修改 UIImageView的frame的主要内容,如果未能解决你的问题,请参考以下文章

怎么给uiimageview添加两次点击事件ios

iOS给UIImageView添加圆角的三种方法

如何在 UIButton 中将 UIImageView 与它的文本居中?

用手指IOS调整UIImageView的大小

IOS:用 UIImageView 填充 NSArray

IOS中UIButton和UIImageView的区别