1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > IOS图文混排基础

IOS图文混排基础

时间:2020-05-20 21:47:49

相关推荐

IOS图文混排基础

IOS图文混排基础

class ViewController: UIViewController {@IBOutlet weak var demoLabel: UILabel!override func viewDidLoad() {super.viewDidLoad()// demoLabel.text = "大码哥IT教育"// demoLabel.textColor = UIColor.bluelet str = "大码哥"let str1 = "IT教育"let strAttr = NSAttributedString(string: str )let attrStr = NSAttributedString(string: str, attributes: [NSAttributedString.Key.foregroundColor: UIColor.red])let attrStr1 = NSAttributedString(string: str1, attributes: [NSAttributedString.Key.foregroundColor: UIColor.blue])//图文混排let attacment = NSTextAttachment()attacment.image = UIImage(named: "m2")let font = demoLabel.fontattacment.bounds = CGRect(x: 0, y: -4, width: font!.lineHeight, height: font!.lineHeight)let attrImageStr = NSAttributedString(attachment: attacment)let attrMStr = NSMutableAttributedString()attrMStr.append(attrStr)attrMStr.append(attrImageStr)attrMStr.append(attrStr1)demoLabel.attributedText = attrMStr}}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。