在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
// 0> 图片附件 let attachment = NSTextAttachment()
attachment.image = #imageLiteral(resourceName: "d_aini") let height = label.font.lineHeight attachment.bounds = CGRect(x: 0, y: -4, width: height, height: height) // 1> 属性文本 let imageStr = AttributedString(attachment: attachment)
// 2> 可变的图文字符串 - NSMutableAttributedString let attrStrM = NSMutableAttributedString(string: "我") attrStrM.append(imageStr) attrStrM.append(AttributedString(string: "99!")) // 3> 设置 label label.attributedText = attrStrM |
请发表评论