溫馨提示×

溫馨提示×

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

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

iOS中如何實(shí)現(xiàn)UILabel text兩邊對齊

發(fā)布時間:2021-07-09 09:11:55 來源:億速云 閱讀:172 作者:小新 欄目:移動開發(fā)

小編給大家分享一下iOS中如何實(shí)現(xiàn)UILabel text兩邊對齊,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

具體代碼如下所示:

-(NSAttributedString *)setTextString:(NSString *)text
{  NSMutableAttributedString *mAbStr = [[NSMutableAttributedString alloc] initWithString:text];
  NSMutableParagraphStyle *npgStyle = [[NSMutableParagraphStyle alloc] init];
  npgStyle.alignment = NSTextAlignmentJustified;
  npgStyle.paragraphSpacing = 11.0;
  npgStyle.paragraphSpacingBefore = 10.0;
  npgStyle.firstLineHeadIndent = 0.0;
  npgStyle.headIndent = 0.0;
  NSDictionary *dic = @{
             NSForegroundColorAttributeName:[UIColor blackColor],
             NSFontAttributeName      :[UIFont systemFontOfSize:15.0],
             NSParagraphStyleAttributeName :npgStyle,
             NSUnderlineStyleAttributeName :[NSNumber numberWithInteger:NSUnderlineStyleNone]
             };
  [mAbStr setAttributes:dic range:NSMakeRange(0, mAbStr.length)];
  NSAttributedString *attrString = [mAbStr copy];
  return attrString;
}
NSString* const msg = @"6日,“幼兒園老師讓帶一條魚”的微博突然間就火了!占領(lǐng)朋友圈!征服全國網(wǎng)友.圖片甚至遭網(wǎng)友惡搞:水煮魚、生魚片都出來了。1月7日,記者在茫茫人海之中,歷經(jīng)千辛萬苦終于在浙江慈溪找到了這位被網(wǎng)友吐槽的“粗心”家長!來聽聽他的解釋吧";
self.lbView.attributedText = [self setTextString:msg];

iOS中如何實(shí)現(xiàn)UILabel text兩邊對齊

看完了這篇文章,相信你對“iOS中如何實(shí)現(xiàn)UILabel text兩邊對齊”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

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

ios
AI