Reputation: 507
I want to summary entry in section and display result in header like this picture
I try to read in document and tutorial but not found.
Upvotes: 0
Views: 96
Reputation: 12036
Read UITableViewDelegate Protocol Reference and use
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
And here build your own custom view for header.
Upvotes: 1