短視訊平臺原始碼,IOS圖文混排基礎

zhibo系統開發發表於2021-11-29

短視訊平臺原始碼,IOS圖文混排基礎實現的相關程式碼

class ViewController: UIViewController {
    @IBOutlet weak var demoLabel: UILabel!
    override func viewDidLoad() {
        super.viewDidLoad()
        //        demoLabel.text = "大碼哥IT教育"
//        demoLabel.textColor = UIColor.blue
        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.font
        attacment.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圖文混排基礎實現的相關程式碼, 更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2844624/,如需轉載,請註明出處,否則將追究法律責任。

相關文章