I have this strange behavior, when I update my dataSource ofr my UITableView and call the reloadData thing, the cells are updated but the size of the table dosen't change.
I really do not have any clue... can some one help?
I have this strange behavior, when I update my dataSource ofr my UITableView and call the reloadData thing, the cells are updated but the size of the table dosen't change.
I really do not have any clue... can some one help?
the problem usually lies in numberOfRowsInSection, make sure that you are recalculating the table size correctly
You should double check both numberOfRowsInsection and heightForRowAtIndexPath:, does your UITableViewCell has a different height than the default one, 44.f?
If it is a custom UITableViewCell, double check in nib (if you are using nib) or in your code again