0

I'm trying to set 'cell.textLabel.font = [UIFont fontWithName:@"Xiomara" size:15];' but nothing happens. I've already added this font to the project and everyware except cell, I can use it.

Also I use SWRevealViewController and this table view is a slide menu.

lhawks
  • 43
  • 10

1 Answers1

0

The way you are doing is correct. Maybe you can increase the size to like 22 to see the visible change. Because the same thing is working fine for me.

Kaps18
  • 156
  • 6
  • I can't do anything with cell content, it take all settings from storyboard. – lhawks Aug 25 '14 at 12:16
  • No... Do this cell.textLabel.font = [UIFont fontWithName:@"Xiomara" size:22]; instead of cell.textLabel.font = [UIFont fontWithName:@"Xiomara" size:15]; – Kaps18 Aug 25 '14 at 12:18
  • But its working fine for me. Maybe u r missing something else. – Kaps18 Aug 25 '14 at 12:27