I have a tableview which has different kind of cells. One of the prototypes cells should contain some datafrom a webpage:
Originally I only have the webpage url.
Cell should contain: Image (webpage main image), Title (webpage title), Description (webpage description). Like whatsapp link sharing works more or less
So first I'm loading the cell, in cellForRowAtIndexPath I assign the corresponding prototype cell to that cell and the prototype cell has a customView in which I have a method called: loadUrlContent to which I pass the url and in an async request it returns the image url, title and description. later on the main thread I'm loading the strings to the customView.
The tableView has UITableViewAutomaticDimension and estimatedRowHeight settled.
For some reason the cell is not resizing after I load the elements in the customView, I'm able to see all the customView and the subviews I have settled but the cell is not resizing so I have cells overlapping
load tableView and cell -> download url -> update content to customView (customView is inside the cell)