- 텍스트 글자 중간의 폰트나 색상으 변경할때
self?.testLabel?.text = label
let attrebuteFirst: [NSAttributedString.Key : Any] = [.font: UIFont.systemFont(ofSize: 22), .foregroundColor : UIColor.black ]
let attributedString = NSMutableAttributedString(string: self?.testLabel?.text ?? "")
attributedString.addAttributes(attrebuteFirst, range: (attributedString.string as NSString).range(of: "추천"))
self?.testLabel?.attributedText = attributedString