単一ラベルでは、特定のラベルを太字にするために次のことを行うことができる場合、これの代わりにそれは不可能です。
UILabel* myBoldlabel= [[UILabel alloc] init];
myBoldlabel.text=@"Offer Details";
myBoldlabel.font = [UIFont boldSystemFontOfSize:16.0f];
UILabel* finalLabel=[[UILabel alloc] init];
finalLabel.text=[NSString stringWithFormat:@"%@:,if users checkin from fb will get 20% discount and if share the this offers on twitter will get 30 % discount from businesses",myBoldlabel];// You can place %@ anywhere in the sentence...
finalLabel.numberOfLines=2;
特定のフォントを適用したい場合は、次の方法で追加することもできます--:
myBoldlabel.font = [UIFont fontWithName:@"TrebuchetMS-Bold" size:18];
これがお役に立てば幸いです。