I created a uitableview and in every cell there's a textLabel.
cell.textLabel.numberOfLines = 0;
cell.textLabel.text = [NSString stringWithFormat:@"Hello\n how are you?"];
UIFont *myFont = [ UIFont fontWithName: @"Novel" size: 6.0 ];
cell.textLabel.font = myFont;
Can i set the font of "Hello" to 10 and the font of "how are you?" to 6?
Thank you!