I know a method to create a header title for a single UITableView:
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
return @"My Title"
}
But How can i set the title for Multiple UITableViews with different names?
Thanks in Advance!!
hope the above code can help you.