如何在属性文本中设置下划线的宽度

时间:2013-08-12 06:38:42

标签: ios6 nsattributedstring underline

我正在使用UITextView并向其添加属性文本。我想根据字体大小为文本设置下划线,但我只能设置大小1.如果有任何人对此有任何想法请告诉。

我使用的代码是: -

NSDictionary* dict = nil;
dict = @{NSForegroundColorAttributeName:[UIColor blackColor],
         NSBackgroundColorAttributeName: [UIColor clearColor],
          NSUnderlineStyleAttributeName: @1
               };
TextView.attributedText = [[NSAttributedString alloc]initWithString:@"String to be underline" attributes:dict];

0 个答案:

没有答案