Skip to content

Instantly share code, notes, and snippets.

View saurabh-selldo's full-sized avatar
🏠
Working from home

Saurabh Bajaj saurabh-selldo

🏠
Working from home
View GitHub Profile
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