uitableview - UITableViewCell appearance in IB different than during run time -


iPhone Dev Question!

So I have a custom UITableViewCell class, and I have configured it in the interface Builder with height of 79. My problem is that once I run the app, then cells only have a height of 20. I do not understand why the two are different.

Before anyone has to face it, any help would be appreciated!

I think you have forgotten to apply the ForroryTindEp method to the table view in your ViewController's Just add "return 79" in that method. This will solve your problem.

Comments