tags:

views:

36

answers:

1

In my heightForRowAtIndexPath method I want to customize height only for certain rows. For the rest I want the framework to take care. How would I do that?

+4  A: 

You can just return tableView.rowHeight, which is set to a default value unless you change it.

Ole Begemann