본문 바로가기
UIKIT

TextView에서 줄 수 제한

by 밤새는 탐험가89 2024. 11. 22.
728x90
SMALL
let titleTextView: UITextView = {
        let textView = UITextView()
        textView.text = "오늘 하루는 어땠나요?😀 (20자 이내)"
        textView.textAlignment = .left
        
        // 줄 수 제헌
        textView.textContainer.maximumNumberOfLines = 1
        ...

 

 

https://developer.apple.com/documentation/appkit/nstextcontainer/maximumnumberoflines

 

maximumNumberOfLines | Apple Developer Documentation

The maximum number of lines that the text container can store.

developer.apple.com

 

728x90
LIST