Ok I don\'t know why this isn\'t working, but I have hooked up a tableView, with 19 items of text I\'d like to set to each cell.
The cells populate just fine, but wh
This helped me:
[self.tableView setContentInset:UIEdgeInsetsMake(0,0,65,0)];
@EmptyStack answer is right.That was a alternate but NOT the Solution.
Even we can achieve the same in storyboard.
Select tableView --> from the storyboard control click on 'add Missing constraints'. That will add the constraint to tableView and View.
That helped me to resolve this issue. A screen_shot attached for reference.
I disabled automatic estimate and it help me.