I have some text in table row cell title that is rendering poorly. I increased the font size so that it can be seen better. Also, the quality of the font changes as the table scrolls.
The font was added to the project and works fine elsewhere in the app. It’s just this tableview.
This is happening on an iPad 2. the 3GS device looks fine.
Does anyone know why this might occur?
here’s the code I’m adding it with:
cell.titleLabel.text = [item objectForKey:@"title"];
[cell.titleLabel setFont:[UIFont fontWithName: @"Asap-Bold" size: 15.0f]];
here’s a screenshot.

thanks for any help
Move your code from
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPathto
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPathMore info/discussion at this SO question.