[iOS] UILabel 글자 크기 자동으로 줄이기

Han's·2023년 7월 28일
0

TIL

목록 보기
9/20


아래와 같이 Text가 UILabel의 크기를 넘어서 잘리는 현상은

adjustsFontSizeToFitWidth를 사용해서 UILabel에 맞춰 Text 사이즈를 자동으로 줄일 수 있습니다.

private lazy var profileNickNameLabel: UILabel = {
        let label = UILabel()
        label.font = viewModel.profileNickNameFont
        label.textColor = viewModel.profileNickNameColor
        label.adjustsFontSizeToFitWidth = true
        label.minimumScaleFactor = 0.5 // 줄어드는 비율(최소)
        return label
    }()

profile
 iOS Developer

1개의 댓글

comment-user-thumbnail
2023년 7월 28일

좋은 글 감사합니다. 자주 올게요 :)

답글 달기