多行label设置间距(NSMutableAttributedString)

        UILabel *reasonLabel = [[UILabel alloc] initWithFrame:CGRectMake(15, 15, UIScreenWidth - 30, textHeight)];
        reasonLabel.textColor = [UIColor colorWithHexString:@"#999999"];
        reasonLabel.numberOfLines = 0;
        reasonLabel.font = [UIFont systemFontOfSize:14];
        reasonLabel.adjustsFontSizeToFitWidth = YES;

//核心代码
NSMutableAttributedString * attributedString1 = [[NSMutableAttributedString alloc] initWithString:tempString];
            NSMutableParagraphStyle * paragraphStyle1 = [[NSMutableParagraphStyle alloc] init];
//间距为5
            [paragraphStyle1 setLineSpacing:5];
            [attributedString1 addAttribute:NSParagraphStyleAttributeName value:paragraphStyle1 range:NSMakeRange(0, [tempString length])];
            [reasonLabel setAttributedText:attributedString1];
            [reasonLabel sizeToFit];

[self.view addSubview:reasonLabel];

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容