本文通过一段实例代码给大家介绍了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];
return attrString;
}
NSString* const msg = @"6日,“幼儿园老师让带一条鱼”的微博突然间就火了!占领朋友圈!征服全国网友.图片甚至遭网友恶搞:水煮鱼、生鱼片都出来了。1月7日,记者在茫茫人海之中,历经千辛万苦终于在浙江慈溪找到了这位被网友吐槽的“粗心”家长!来听听他的解释吧";
self.lbView.attributedText = [self setTextString:msg];

以上所述是小编给大家介绍的iOS中UILabel text两边对齐的实现代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对编程学习网网站的支持!
织梦狗教程
本文标题为:iOS中UILabel text两边对齐的实现代码
基础教程推荐
猜你喜欢
- Android中的webview监听每次URL变化实例 2023-01-23
- IOS应用内跳转系统设置相关界面的方法 2022-11-20
- Flutter绘图组件之CustomPaint使用详解 2023-05-12
- Flutter手势密码的实现示例(附demo) 2023-04-11
- Android开发使用RecyclerView添加点击事件实例详解 2023-06-15
- 解决Android Studio突然不显示logcat日志的问题 2023-02-04
- Android多返回栈技术 2023-04-15
- iOS开发教程之XLForm的基本使用方法 2023-05-01
- IOS 播放系统提示音使用总结(AudioToolbox) 2023-03-01
- android studio按钮监听的5种方法实例详解 2023-01-12
