實(shí)例如下:
成都創(chuàng)新互聯(lián)主要從事成都網(wǎng)站建設(shè)、成都網(wǎng)站制作、網(wǎng)頁設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)臨朐,10余年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):028-86922220
NSString *contentStr = @"總以為,在最初的地方,有一個(gè)最原來的我,就也會(huì)有一個(gè)最原來的你"; UILabel *tempLabel = [[UILabel alloc] init]; //設(shè)置背景顏色 tempLabel.backgroundColor = [UIColor redColor]; //設(shè)置內(nèi)容 tempLabel.text = contentStr; //設(shè)置字體顏色 tempLabel.textColor = [UIColor whiteColor]; //設(shè)置字體大小 tempLabel.font = [UIFont systemFontOfSize:15.0]; //設(shè)置文本是否多行顯示 tempLabel.numberOfLines = 0; tempLabel.lineBreakMode = NSLineBreakByWordWrapping; //設(shè)置UILabel根據(jù)文字自適應(yīng)高度 CGSize size = [tempLabel sizeThatFits:CGSizeMake(100, MAXFLOAT)]; //設(shè)置frame tempLabel.frame = CGRectMake(50, 100, 100, size.height); [self.view addSubview:tempLabel]; //設(shè)置label的行間距 NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:contentStr]; NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init]; [paragraphStyle setLineSpacing:8]; [attributedString addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:NSMakeRange(0, [contentStr length])]; [tempLabel setAttributedText:attributedString]; [tempLabel sizeToFit];
以上這篇iOS 設(shè)置UILabel的行間距并自適應(yīng)高度的方法就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持創(chuàng)新互聯(lián)。