生活随笔
收集整理的這篇文章主要介紹了
IOS图文混排基础
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
IOS圖文混排基礎
class ViewController: UIViewController {@IBOutlet weak var demoLabel
: UILabel!override func viewDidLoad() {super.viewDidLoad()
let 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
}
}
總結
以上是生活随笔為你收集整理的IOS图文混排基础的全部內容,希望文章能夠幫你解決所遇到的問題。
如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。