[Swift] UILabel 에 글자별로 크기,색깔 변경
2019. 2. 12. 09:01ㆍProgramming/Swift
반응형
let taskText = "All Tasks (task)"
let attributed = NSMutableAttributedString(string: taskText)
let strokeTextAttributes = [
// NSAttributedString.Key.strokeColor : UIColor.black,
NSAttributedString.Key.foregroundColor : UIColor.black,
// NSAttributedString.Key.strokeWidth : 2.0,
NSAttributedString.Key.font : UIFont.boldSystemFont(ofSize: 18)
] as [NSAttributedString.Key : Any]
attributed.addAttributes(strokeTextAttributes, range: (taskText as NSString).range(of: "(task)"))
titleLabel.attributedText = attributed
반응형
'Programming > Swift' 카테고리의 다른 글
[Swift] opacity (0) | 2019.03.22 |
---|---|
[Swift] UserDefaults.standard int형식으로 불러오기 (0) | 2019.02.18 |
[Swift] navigation 백그라운드 색 변경 (0) | 2019.02.11 |
[Swift] navigation bar 구분선 제거 (0) | 2019.02.11 |
[Swift] 이미지가 보여지지 않을 경우 - Color Space (0) | 2018.09.12 |