I want to make UILabel\'s text bold
infoLabel=[[UILabel alloc]initWithFrame:CGRectMake(90,150, 200, 30)]; [infoLabel setText:@\"Drag 14 more Flavors\"]; [infoLab
Try
[infoLabel setFont:[UIFont fontWithName:@"Arial-BoldMT" size:16]];
It may also be worth checking if the font you're trying to use is available on device