You can install it using UIFont, see this code -
cell.textLabel.textColor=[UIColor whiteColor]; cell.textLabel.font=[UIFont fontWithName:@"Arial Rounded MT Bold" size:15.0]; cell.textLabel.numberOfLines=2; cell.textLabel.lineBreakMode=UILineBreakModeMiddleTruncation; cell.textLabel.backgroundColor=[UIColor clearColor];
There are many UITableViewCell properties that change its appearance. You can also set UILabel to a UITableViewCell as follows:
[cell.contentView addSubview:lblView];
Thanks!
source share