Notice
Recent Posts
Recent Comments
Link
목록행간 (1)
study record
[iOS] iOS TextView 행간, 자간 조절하기
// 먼저 행간 조절 스타일 설정 let style = NSMutableParagraphStyle() style.lineSpacing = 10 let attributedString = NSMutableAttributedString(string: textView.text) // 자간 조절 설정 attributedString.addAttribute(NSAttributedString.Key.kern, value: CGFloat(2.0), range: NSRange(location: 0, length: attributedString.length)) // 행간 스타일 추가 attributedString.addAttribute(NSAttributedString.Key.paragraphStyle, value: sty..
iOS/iOS 정리
2022. 3. 2. 15:42