본문 바로가기
개발/swift

String의 부분 속성 바꾸기 : NSMutableAttribueString

by 꼬마상어 2016. 10. 24.
반응형

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



이런식으로 쓰면 됩니당

반응형

댓글