I want to make a UITableViewCell
bigger. How can I do this, I have tried adjusting its frame but nothing happens. What can I do?
I found this answer to be the most informative and most up-to-date to change the height of a table view cell.
TL;DR
Enable row height estimation on your table view in the viewDidLayoutSubviews
method.
self.tableView.rowHeight = UITableViewAutomaticDimension self.tableView.estimatedRowHeight = 44.0; // set to whatever your "average" cell height is