디자인에서 전달해준 폰트에 line height, letter spacing(글자 간격) 값 존재.
UIFont에 lineHeight 속성은 있지만 get-only 프로퍼티라서 변경하지 못하고, UIFont 자체에 설정하는 다른 방법도 없음.
UILabel
혹은 NSAttributedString
에다가 메소드 구현해야함
UILabel에 한다면 UIButton의 title에는 적용하지 못할까봐 걱정했는데,
버튼의 titleLabel 속성도 UILabel이라 적용 가능
→ UILabel의 extension에 구현하기로 결정
우리가 볼 건 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
}
}
NSAttributedString
을 이용