I'am trying to make app, that will show images in table view. I have custom cell with image view. It only must download image data from url:
@IBOutlet weak var tweetImage: UIImageView!
var imageData : MediaItem? { didSet { updateUI() }}
func updateUI(){
tweetImage.image = nil
if let url = imageData?.url {
if let data = NSData(contentsOfURL: url) {
tweetImage.image = UIImage(data: data)
}
}
}
I need to get the cell height was changed after the download. It must be equal to the height of the image. I set auto dimension in viewController:
override func viewDidLoad() {
super.viewDidLoad()
tableView.estimatedRowHeight = tableView.rowHeight
tableView.rowHeight = UITableViewAutomaticDimension
}
I set "aspect fit" to image, I get strange results. The image extends beyond the boundaries of the cell. Maybe i need to set some constraints... I don't know.
Results:
But i need this:
Of course, you need to set constraints for your image in the cell
Maybe this screenshot will help you
If you want to use dinamic table with
UITableViewAutomaticDimension
, then you need to set your constraint properly (image). (for correct width and height, I suggest you to use aspect ratio)With static table view, you should implement
optional func tableView(_ tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat
, and count the cell size manually.If you want to load images async:
After you load and set new
UIImage
, you can reload specific cell viaUITableView
function:- (void)reloadRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation
In your UIViewController:
In your UITableViewCell