Forked from joshavant/UITextView+HeightCalculation.swift
Created
December 24, 2020 06:27
-
-
Save saurabh-selldo/6f037e3d0d056a98e349a4923b70fadd to your computer and use it in GitHub Desktop.
UITextView Height Calculation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension UITextView { | |
// Note: This will trigger a text rendering! | |
func calculateViewHeightWithCurrentWidth() -> CGFloat { | |
let textWidth = self.frame.width - | |
self.textContainerInset.left - | |
self.textContainerInset.right - | |
self.textContainer.lineFragmentPadding * 2.0 - | |
self.contentInset.left - | |
self.contentInset.right | |
let maxSize = CGSize(width: textWidth, height: CGFloat.max) | |
var calculatedSize = self.attributedText.boundingRectWithSize(maxSize, | |
options: [.UsesLineFragmentOrigin, .UsesFontLeading], | |
context: nil).size | |
calculatedSize.height += self.textContainerInset.top | |
calculatedSize.height += self.textContainerInset.bottom | |
return ceil(calculatedSize.height) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment