背景:
在开发中我们如果对一个UILabel根据内容高度进行自适应,有时会出现文字不能右对齐的情况。
看图:
没有右对齐解决方法:
我们可以设置UILabel上的文字内容为两端对齐。
代码:
可复制代码:
/**********label上文字两端对齐***********/
NSMutableAttributedString * attributedString1 = [[NSMutableAttributedString alloc] initWithString:subView.text];
NSMutableParagraphStyle * paragraphStyle1 = [[NSMutableParagraphStyle alloc] init];
//设置label每行文字之间的行间距
// paragraphStyle1.lineSpacing=8;
//设置文字两端对齐
paragraphStyle1.alignment=NSTextAlignmentJustified;
NSDictionary * dic =@{
//这两个一定要加哦。否则就没效果啦
NSParagraphStyleAttributeName:paragraphStyle1,
NSUnderlineStyleAttributeName:[NSNumber numberWithInteger:NSUnderlineStyleNone],
};
[attributedString1setAttributes:dicrange:NSMakeRange(0, attributedString1.length)];
[subViewsetAttributedText:attributedString1];
demo地址:https://gitee.com/liangsenliangsen/Masonry_subAndSup.git
本篇文章到这里就结束了,愿大家加班不多工资多,男同胞都有女朋友,女同胞都有男朋友。😊
网友评论