美文网首页
label字体左右对齐

label字体左右对齐

作者: 天地一紫罗 | 来源:发表于2017-05-10 17:18 被阅读0次

NSMutableAttributedString *mstr = [[NSMutableAttributedString alloc]initWithString:[NSString stringWithFormat:@"%@ %@",dic[@"section"],dic[@"text"]]];

NSMutableParagraphStyle *par = [[NSMutableParagraphStyle alloc]init];

par.alignment = NSTextAlignmentJustified;

NSDictionary *dic1=@{NSParagraphStyleAttributeName : par,

NSFontAttributeName : [UIFont systemFontOfSize:15],

NSUnderlineStyleAttributeName : [NSNumber numberWithInteger:NSUnderlineStyleNone]

};

[mstr setAttributes:dic1 range:NSMakeRange(0, mstr.length)];

cell.textLabel.attributedText =mstr;

相关文章

网友评论

      本文标题:label字体左右对齐

      本文链接:https://www.haomeiwen.com/subject/rxpgtxtx.html