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?
There are 2 steps to change height of a table cell without any additional code:
Table View
from your Storyboard. In the Size Inspector
change Row Height
.Table View Cell
and while it's selected in the Size Inspector
change the Row Height
.Note that you MUST set BOTH of Table View's Row Height
attribute and Table View Cell's Row Height
attribute.
If you just set one of them, it won't work.