UITextField
在绘制图像附件时表现非常糟糕。我正在研究一些子视图解决方案,以重叠与UIImageView
s的附件。它工作得很好,但是我需要UITextView
来停止绘制这些附件,但要在其位置上保留附件框架。
我知道NSTextContainer
exclusionPaths
属性,但不确定它是否适用于异步图像加载。下载后将知道图像大小。
答案 0 :(得分:0)
通过nilling [NSTextAttachment image]
找到工作解决方案并恢复边界:
CGRect bounds = attachment.bounds;
attachment.image = nil;
attachment.bounds = bounds;