From 23b050e77db13ff7d16b7fa787c170af082ba22c Mon Sep 17 00:00:00 2001 From: Roman Efimov Date: Sat, 20 Jul 2013 12:02:39 -0500 Subject: [PATCH] Replace styleCell with willDisplayCell: --- .../Classes/Controllers/StylingViewController.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RETableViewManagerExample/RETableViewManagerExample/Classes/Controllers/StylingViewController.m b/RETableViewManagerExample/RETableViewManagerExample/Classes/Controllers/StylingViewController.m index c4980da..9a6cfc3 100644 --- a/RETableViewManagerExample/RETableViewManagerExample/Classes/Controllers/StylingViewController.m +++ b/RETableViewManagerExample/RETableViewManagerExample/Classes/Controllers/StylingViewController.m @@ -44,9 +44,9 @@ } #pragma mark - -#pragma mark RETableViewManagerDelegate +#pragma mark UITableViewDelegate -- (void)tableView:(UITableView *)tableView styleCell:(UITableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath +- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath { cell.textLabel.font = [UIFont fontWithName:@"Avenir-Medium" size:16]; }