forked from organicmaps/organicmaps
[MAPSME-4676] [ios] Added numberOfVisibleLines to UILabel.
This commit is contained in:
parent
4dd3656e65
commit
97523b5818
1 changed files with 8 additions and 0 deletions
|
@ -0,0 +1,8 @@
|
|||
extension UILabel {
|
||||
var numberOfVisibleLines: Int {
|
||||
let textSize = CGSize(width: frame.size.width, height: CGFloat(MAXFLOAT))
|
||||
let rowHeight = sizeThatFits(textSize).height.rounded()
|
||||
let charHeight = font.pointSize.rounded()
|
||||
return Int((rowHeight / charHeight).rounded())
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue