본문 바로가기

UIKIT

TextView에서 줄 수 제한

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