Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- rxswift
- Apple
- appstore
- mac
- error
- Notification
- MacOS
- UIButton
- geofencing
- 개발자
- Swift
- FLUTTER
- Code
- IOS
- SwiftUI
- 한글
- stack
- JPA
- window
- 웹뷰
- darkmode
- Archive
- github
- Session
- iOS16
- view
- Git
- Realm
- Firebase
- Xcode
Archives
- Today
- Total
EEYatHo 앱 깎는 이야기
Swift ) UILabel 줄 수 알아내기 - EEYatHo iOS 본문
반응형
개발을 하다보면 Label 의 줄 수에 따라서 조건이 변하는 경우가 생기는데,
대부분의 경우 AutoLayout으로 해결하지만, 줄 수에 따라 분기해야하는 경우도 발생합니다.
text와 font를 가지고 , 미리 줄의 수를 알 수 있는 방법이 있습니다.
class Utilities {
...
/*
UILabel의 줄 수를 return 합니다.
label : .text와 .font를 설정해준 채로 보내줘야합니다.
labelWidth : 한 줄의 넓이입니다.
*/
class func lineNumber(label: UILabel, labelWidth: CGFloat) -> Int {
let boundingRect = label.text!.boundingRect(with: .zero, options: [.usesFontLeading],
attributes: [.font: label.font!], context: nil)
return Int(boundingRect.width / labelWidth + 1)
}
...
}
감사합니다
'iOS, Swift' 카테고리의 다른 글
Swift ) 뒤로가기 꾹 눌렀을 때 메뉴 (Back Button menu) - EEYatHo iOS (0) | 2021.03.26 |
---|---|
Swift ) Realm 배열 사용하기 - EEYatHo iOS (2) | 2021.03.25 |
Swift ) Cell 눌렀을 때 효과 없애기 - EEYatHo iOS (0) | 2021.03.23 |
Swift ) 랜덤함수, 임의의 수 - EEYatHo iOS (0) | 2021.03.23 |
Swift ) CoreData 특정 Entity 총 갯수 구하기 - EEYatHo iOS (0) | 2021.03.23 |
Comments