1
我試圖使用NSTextAttachment
在UITextField
中顯示圖像,但我希望圖像和文本之間有一定的水平間距。但是,如下所示將NSKernAttributeName
屬性添加到屬性字符串時,會將附件的高度重置爲與周圍文本相同的高度。NSTextAttachment的水平間距
var str = NSMutableAttributedString(attributedString: NSAttributedString(attachment: imageAttachment))
str.addAttribute(NSKernAttributeName, value: 10, range: NSRange(location: 0,length: 1))
是否有另一種方法來添加圖像和文本之間的水平空間?