반응형
iOS 15.5, Xcode 13.31, Swift 5, UIKit 환경에서 진행했습니다.
let attributedString = NSMutableAttributedString.init(string: "Apply UnderLining")
attributedString.addAttribute(NSAttributedString.Key.underlineStyle, value: 1, range: NSRange.init(location: 0, length: attributedString.length))
label.attributedText = attributedString
반응형
'iOS > 코드조각' 카테고리의 다른 글
[iOS, Swift] LocalNotification Badge 숫자 올리기 (0) | 2022.08.21 |
---|---|
[iOS, Swift] LocalNotification 실행하기 (0) | 2022.08.21 |
[iOS, Swift] UILabel 텍스트 양쪽 정렬(Justify Text) (0) | 2022.08.20 |
[iOS, Swift] UILabel 그림자 효과 넣기 (0) | 2022.08.20 |
[iOS, Swift] UILabel TextColor 설정 (NSAttributedString) (0) | 2022.08.20 |