I need to change dynamically the height of a uitableview inside my view.
I tried with this code inside the viewDidLoad:
self.theTable.rowHeight = 90;
self.theTable.contentSize = CGSizeMake(320,900);
The first line works and the height is changed, but the second doesn't work!
How can I do this?