我正在使用 HTMLLabel ( https://github.com/nicklockwood/HTMLLabel ),我想实现一些插图。所以我在 HTMLLabel.m 文件中写道:
- (void)drawTextInRect:(CGRect)rect
{
UIEdgeInsets insets = {0, 5, 0, 5};
[super drawTextInRect:UIEdgeInsetsInsetRect(rect, insets)];
}
但是该方法永远不会被调用,有什么想法吗?谢谢你的帮助!