I\'m trying to place various size images inside imageView of UITableViewCell. I get the image data asynch\'ly, create the image, set the content mode of imageView and finall
Create subclass of UITableViewCell:
@interface UITableViewCellSubClass : UITableViewCell @end @implementation UITableViewCellSubClass - (void)layoutSubviews { [super layoutSubviews]; self.imageView.frame = CGRectMake(0,4,32,32); self.textLabel.frame = CGRectMake(42,4,300,32); } @end