views:

124

answers:

1

hello, Can we change the color of the table view title the string which i am showing appears in gray color can we choose color for it .Is there any property of table view title i am not asking for table view header or footer i mean the title

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
 // Keep space in the following line ........ DONT REMOVE
 return [NSString stringWithFormat:@"Select your service:"];
}
A: 

You can use a custom header view, by implementing the -tableView:viewForHeaderInSection: method.

There's no documented way to change the title color. (The undocumented way is override -[UITableHeaderFooterView setText:].)

KennyTM