| 123456789101112131415161718192021222324252627282930313233343536 |
- //
- // PaddedTextField.swift
- // LoopKitUI
- //
- // Copyright © 2018 LoopKit Authors. All rights reserved.
- //
- import UIKit
- class PaddedTextField: UITextField {
- @IBInspectable var textInset: CGSize = .zero {
- didSet {
- setNeedsLayout()
- invalidateIntrinsicContentSize()
- }
- }
- private var textInsets: UIEdgeInsets {
- return UIEdgeInsets(top: textInset.height, left: textInset.width, bottom: textInset.height, right: textInset.width)
- }
- override func editingRect(forBounds bounds: CGRect) -> CGRect {
- return bounds.inset(by: textInsets)
- }
- override func textRect(forBounds bounds: CGRect) -> CGRect {
- return bounds.inset(by: textInsets)
- }
- override func placeholderRect(forBounds bounds: CGRect) -> CGRect {
- return bounds.inset(by: textInsets)
- }
- }
|