溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

iOS 設(shè)置UILabel的行間距并自適應(yīng)高度的方法

發(fā)布時間:2020-10-06 23:40:05 來源:腳本之家 閱讀:412 作者:jingxian 欄目:移動開發(fā)

實例如下:

NSString *contentStr = @"總以為,在最初的地方,有一個最原來的我,就也會有一個最原來的你"; 
   
  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)容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI