I created Customized tableViewCell, I added UIView SubView in UITableViewCell. So my all dynamic Text & Image Content in UIView and it will change according to text and ima
for dynamically height for UITableViewCell set in viewDidLoad
_tableView.estimatedRowHeight = 100.0; _tableView.rowHeight = UITableViewAutomaticDimension;
this set automatic cell height as per content height
Let me know if this works...