I have a storyboard with tableview. I have 4 cells in table. They have their identifiers. Problem is that I can't change font of cells programmatically. I've already add font to the project and added a new key in the array named "Fonts Provided by application" in the plist file. Maybe I need to reloadData but where I can do it? Under viewWillAppear it's useless
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *CellIdentifier = [self.menuItems objectAtIndex:indexPath.row];
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
[cell.textLabel setFont:[UIFont fontWithName:@"Xiomara" size:30]];
return cell;
}