热门搜索 :
考研考公
您的当前位置:首页正文

UILabel首行缩进

来源:东饰资讯网

使用NSMutableParagraphStyle和NSAttributeString类

NSMutableParagraphStyle*style = [[NSParagraphStyle defaultParagraphStyle] mutableCopy];

//对齐方式

style.alignment = NSTextAlignmentLeft;

//首行缩进

style.firstLineHeadIndent=40.0f;

NSAttributedString*attrText = [[NSAttributedString alloc] initWithString:@"shibushisssssss我们就是shibushisssssss我们就是11111111" attributes:@{NSParagraphStyleAttributeName: style}];

self.contentlabel.numberOfLines =0;

self.contentlabel.attributedText = attrText;

运行效果:

UILabel首行缩进
Top