iOS文字下划线-成都快上网建站

iOS文字下划线

设置UITextView,UILabel 中的文字加下划线

创新互联是一家专注于网站建设、网站设计与策划设计,左云网站建设哪家好?创新互联做网站,专注于网站建设10年,网设计领域的专业建站公司;建站业务涵盖:左云等地区。左云做网站价格咨询:18982081108

//添加下划线
-(NSAttributedString*) getAttributedString:(NSAttributedString*) attributedString isUnderline:(BOOL) isUnderline
{
    NSNumber *valuUnderline = [NSNumbernumberWithBool:isUnderline];
    NSRange rangeAll = NSMakeRange(0, attributedString.string.length);
    NSMutableAttributedString *as = [attributedString mutableCopy];
    [as beginEditing];
    [as addAttribute:NSUnderlineStyleAttributeNamevalue:valuUnderline range:rangeAll];
    [as endEditing];
    return as;
}

使用

textView.attributedText = [self getAttributedString:_mainTextView.attributedText isUnderline:YES];
label.attributedText =  [self getAttributedString:_mainTextView.attributedText isUnderline:YES];


当前名称:iOS文字下划线
文章地址:http://kswjz.com/article/iiogsc.html
扫二维码与项目经理沟通

我们在微信上24小时期待你的声音

解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流