[MAPSME-4676] [ios] Added numberOfVisibleLines to UILabel.

This commit is contained in:
Ilya Grechuhin 2017-06-26 12:08:31 +03:00 committed by Sergey Yershov
parent 4dd3656e65
commit 97523b5818

View file

@ -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())
}
}