OOPlaceTextField.swift 513 B

123456789101112131415161718192021
  1. //
  2. // OOPlaceTextField.swift
  3. // o2app
  4. //
  5. // Created by 刘振兴 on 2017/10/17.
  6. // Copyright © 2017年 zone. All rights reserved.
  7. //
  8. import UIKit
  9. class OOPlaceTextField: UITextField {
  10. override func textRect(forBounds bounds: CGRect) -> CGRect {
  11. return CGRect(x: 10, y: 0, width: bounds.width - 10, height: bounds.height)
  12. }
  13. override func editingRect(forBounds bounds: CGRect) -> CGRect {
  14. return CGRect(x: 10, y: 0, width: bounds.width - 10, height: bounds.height)
  15. }
  16. }