In every UITableViewCell of a UITableView I\'m placing an image in its imageView. However, if I increase the height of a cell using tableView:heightForRowAtIndexPath: to acc
You need to subclass UITableViewCell and override layoutSubviews, as follows:
- (void) layoutSubviews { [super layoutSubviews]; self.imageView.frame = CGRectMake( 10, 10, 50, 50 ); // your positioning here }
In your cellForRowAtIndexPath: method, be sure to return an instance of your new cell type.