let explainText = "안녕하세요 \n iOSoo입니다."
let style = NSMutableParagraphStyle() //단락 스타일 속성의 하위 속성 값을 변경하기 위한 개체입니다.
style.lineSpacing = 5 //text 행간 조절
style.alignment = .center //text 정렬
let attributes = [NSAttributedString.Key.paragraphStyle : style]
explanationTextView.attributedText = NSAttributedString(string: explainText, attributes: attributes)
explanationTextView.font = .systemFont(ofSize: 14) //text 폰트와 폰트 사이즈
'iOS - 실무관련 > iOS' 카테고리의 다른 글
Notification push 앱에서 알람 거부에서 허용으로 설정 (0) | 2022.06.14 |
---|---|
Delegate 패턴 (0) | 2022.06.12 |
Pinch 제스처로 이미지 확대 축소하기 (0) | 2022.06.05 |
원형 View 만들기 (0) | 2022.05.22 |
SceneDelegate에서 특정 ViewController 보여지게 만들기 (0) | 2022.05.08 |