你好,歡迎來到IOS教程網

 Ios教程網 >> IOS使用技巧 >> IOS7技巧 >> iOS中UILabel text兩邊對齊的實現代碼

iOS中UILabel text兩邊對齊的實現代碼

編輯:IOS7技巧
這篇文章介紹了iOS中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];

  returnattrString;

}

NSString*constmsg = @"6日,“幼兒園老師讓帶一條魚”的微博突然間就火了!占領朋友圈!征服全國網友.圖片甚至遭網友惡搞:水煮魚、生魚片都出來了。1月7日,記者在茫茫人海之中,歷經千辛萬苦終於在浙江慈溪找到了這位被網友吐槽的“粗心”家長!來聽聽他的解釋吧";

self.lbView.attributedText = [self setTextString:msg];

 

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved