TYAttributedLabel
TYAttributedLabel copied to clipboard
设置占位图, 真正的图片下载后, 如何更新label大小
TYImageStorage *imgStorage = [[TYImageStorage alloc] init];
imgStorage.placeholdImageName = imgName;
imgStorage.size = [UIImage imageNamed:imgStorage.placeholdImageName].size;
imgStorage.imageAlignment = TYImageAlignmentFill;
imgStorage.imageURL = url;
[label appendTextStorage:imgStorage];
label 使用的还是这里设置的大小, 如何更新?
@12207480 大佬能回答一下么?
获取到imgStorage 设置size 重新刷新display