Change width of UIImageView
Posted
by BenMills
on Stack Overflow
See other posts from Stack Overflow
or by BenMills
Published on 2010-04-02T00:58:07Z
Indexed on
2010/04/02
1:03 UTC
Read the original article
Hit count: 442
iphone
|objective-c
How would you change just the width of a UIImageView in objective-c? Currently I'm doing this:
imageview.frame = GCRectMake(x,y,width,height);
But when I change the width it seems to just change the position rather then change the size.
© Stack Overflow or respective owner