Guys-
I am using
- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
{
if ( section == 0 )
{
return NSLocalizedString(@"Section_0_text", @"");
}
if ( section == 1 )
{
return NSLocalizedString(@"Section_1_text","");
}
return nil;
}
Can I modify return string text font, color and other few properties?