objective-c – NSMutableAttributedString的自动换行

前端之家收集整理的这篇文章主要介绍了objective-c – NSMutableAttributedString的自动换行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有NSMutableAttributedString,字符串很长.我想在UIlabel上显示它时进行自动换行.如果是NSString,我会继续这样做,
Dynamic UILabel truncating the text
但是我怎么能用NSAttributedString呢?
一旦完成,我需要根据标签大小调整视图大小.

解决方法

在iOS 6中不推荐使用lineBreakMode属性.它只是更改了常量的名称.旧常量已弃用,但仍可用.即使您要部署到较旧的iOS,也可以使用新常量,因为常量只是枚举值.旧名称和新名称具有相同的值.所以,只需设置yourlabelname.lineBreakMode = NSLineBreakByTruncatingTail即可.
NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
[paragraphStyle setLineBreakMode:NSLineBreakByTruncatingTail];
[attributedStr addAttribute:NSParagraphStyleAttributeName
                     value:paragraphStyle
                     range:NSMakeRange(0,[attributedStr length])];
原文链接:https://www.f2er.com/c/119072.html

猜你在找的C&C++相关文章