UITextview字体样式问题

时间:2016-04-07 04:52:48

标签: ios uitextview

我将字体设置为UITextView。有用。我还通过选择UITextView中的文字,将UITextView中输入的文字设为粗体。我的问题是,如果我给 字体大小我不能使文本加粗。

1 个答案:

答案 0 :(得分:0)

试试吧。

self.txtView.text=@“Life is an opportunity , Don’t west your time !”;

NSMutableAttributedString * string = [[NSMutableAttributedString alloc]initWithString:self.txtView.text];
NSString *word= @"Life is an opportunity"; 
NSRange range=[self..txtView.text rangeOfString:word];
[string addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:range];
[self.txtView setAttributedText:string];
[self.txtView setFont:[UIFont fontWithName:@"Montserrat-Bold" size:15]];
self.txtView.alpha=1;