mobile-ios/CovidSafe/UIElements/UITextViewFixed.swift

24 lines
393 B
Swift
Raw Permalink Normal View History

2020-05-08 07:49:14 +00:00
//
// UITextViewFixed.swift
// CovidSafe
//
// Copyright © 2020 Australian Government. All rights reserved.
//
import UIKit
@IBDesignable
class UITextViewFixed: UITextView {
override func layoutSubviews() {
super.layoutSubviews()
setup()
}
func setup() {
textContainerInset = UIEdgeInsets.zero
textContainer.lineFragmentPadding = 0
}
}