廢話不多說了,直接給大家貼代碼了,詳細代碼如下所示:
-(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日,“幼兒園教師讓帶一條魚”的微博忽然間就火了!占領冤家圈!降服全國網友.圖片甚至遭網友惡搞:水煮魚、生魚片都出來了。1月7日,記者在茫茫人海之中,歷經含辛茹苦終於在浙江慈溪找到了這位被網友吐槽的“大意”家長!來聽聽他的解釋吧";
self.lbView.attributedText = [self setTextString:msg];

以上所述是本站給大家引見的IOS中UILabel text兩邊對齊的完成代碼,希望對大家有所協助,假如大家有任何疑問請給我留言,本站會及時回復大家的。在此也十分感激大家對本站網站的支持!
【iOS中UILabel text兩邊對齊的完成代碼】的相關資料介紹到這裡,希望對您有所幫助! 提示:不會對讀者因本文所帶來的任何損失負責。如果您支持就請把本站添加至收藏夾哦!