한참 찾았다.
\n\n 쓰면서 <b></b> 되는 것을 찾고 있었지만 어차피 bold 적용하는 것 같아서 아래와 같이 적용하니까
심플하게 끝
let normalAttrs = [NSAttributedString.Key.font : UIFont.systemFont(ofSize: 15)]
let boldAttrs = [NSAttributedString.Key.font : UIFont.boldSystemFont(ofSize: 15)]
let temp = NSMutableAttributedString(string: memo, attributes:normalAttrs)
temp.append(NSMutableAttributedString(string: content, attributes:boldAttrs))
uitextview.attributedText = temp
'Study > Swift' 카테고리의 다른 글
SwiftUI Life Cycle (0) | 2021.06.29 |
---|---|
CocoaPods 사용법과 파일구조[펌] (0) | 2021.06.29 |
status bar, navigation bar 바꾸기 (0) | 2020.11.20 |
[Swift] 'ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES' 해결방법 (0) | 2020.11.19 |
[Swift] 상단 코멘트 변경 (0) | 2020.11.18 |