YYText-显示富文本

github地址:

https://github.com/ibireme/YYText

CocoaPods安装:

pod 'YYText'

1、YYLabel使用注意

    private lazy var contentLabel: YYLabel = {
        let label = YYLabel()
        // YYLabel要想自动换行,必须设置最大换行的宽度
        label.preferredMaxLayoutWidth = 200
        // 多行显示
        label.numberOfLines = 0
        
        return label
    }()
原文地址:https://www.cnblogs.com/panda1024/p/6217216.html