GitHub:
https://github.com/Cocoanetics/DTCoreText
接口文档说明:
https://docs.cocoanetics.com/DTCoreText/
DTCoreText库包含三部分Parsing,Layouting,UI。
其中UI包含了我们常使用的类:
DTAttributedLabel
用来代替UILabel使用的控件,显示富文本,继承自 DTAttributedTextContentView,可以使用delegate来处理image和hyperlink。
DTAttributedTextCell
作为tableViewCell来使用
DTAttributedTextContentView
用来显示富文本,不应该直接被使用。
DTAttributedTextView
用来代替UITextView,继承自UIScrollView,里面放置了一个DTAttributedTextContentView用来显示内容
DTLazyImageView
DTWebVideoView
DTLinkButton 每个超链接都转化为一个DTLinkButton来使用
setup:
Linking里的Other Linker Flags
Search Paths里的Header Search Paths
说了这么多,关键还是要去看dtcoretext的demo然后自己实践才能领会。