개발/swift
String의 부분 속성 바꾸기 : NSMutableAttribueString
꼬마상어
2016. 10. 24. 13:48
반응형
String의 부분 부분 속성을 바꾸고 싶다면!
let attributedString = NSMutableAttributedString(string: "총 12 건")
attributedString.addAttribute(NSForegroundColorAttributeName, value: UIColor.rgba(123, 124, 125, 255), range: NSRange(location: 0, length: 1))
attributedString.addAttribute(NSForegroundColorAttributeName, value: UIColor.rgba(123, 124, 125, 255), range: NSRange(location: attributedString.length - 1 , length: 1))
lbCount.attributedText = attributedString
이런식으로 쓰면 됩니당
반응형