views:

395

answers:

1

To customize cell, we implement class inherit UITableViewCell. Now, to customize header of Section in grouped UITableView (same to below picture), how to do? Please guide to me!
alt text

+1  A: 

Implement tableView:viewForHeaderInSection: in your table view delegate.

Ole Begemann
That's good, thank so much!
hungbm06