I have a tableview. I want some tableview cells with dynamic height while other cells with the fixed height. For dynamic height, I used following lines in my viewDidLoad view controller delegate.
tableView.estimatedRowHeight = 200
tableView.rowHeight = UITableViewAutomaticDimension
what will be the efficient way to have fixed heighted cells and self sizing cells in one tableview?
Thanks in advance.