문제 상황

디자인에서 전달해준 폰트에 line height, letter spacing(글자 간격) 값 존재.

UIFont에 lineHeight 속성은 있지만 get-only 프로퍼티라서 변경하지 못하고, UIFont 자체에 설정하는 다른 방법도 없음.

해결 과정

UILabel 혹은 NSAttributedString에다가 메소드 구현해야함

UILabel에 한다면 UIButton의 title에는 적용하지 못할까봐 걱정했는데,

Untitled

버튼의 titleLabel 속성도 UILabel이라 적용 가능

→ UILabel의 extension에 구현하기로 결정

사전 지식 : Font Metrics

Untitled

우리가 볼 건 line height랑 baseline

func setupLetterSpacing(_ spacing: CGFloat) {
        guard let text else { return }

        let letterSpacing = font.pointSize * spacing

        let attributes: [NSAttributedString.Key: Any] = [
            .kern: letterSpacing,
        ]
        let attributedString = NSAttributedString(
            string: text,
            attributes: attributes
        )

        attributedText = attributedString
    }
}

UILabel의 line height 설정하기

NSAttributedString을 이용