Is it possible to constraint the width of [[cell imageView] a standard UITableViewCell?
I’ve tried [[cell imageView] setFrame:CGRectMake(0, 0, 50, 50)] but it has no effect.
[EDIT]
Otherwise, is it possible to change a UIImage size before adding it in the UIImageView?
If you can’t simply set the image view’s frame on a regular UITableViewCell, you could make a UITableViewCell subclass, and reposition the image view in
-layoutSubviews.