Skip to content

Instantly share code, notes, and snippets.

@w3programer
w3programer / HATextField
Created June 7, 2018 20:13 — forked from litoarias/HATextField
UITextField with left icon for Swift 3
import UIKit
@IBDesignable
class HATextField: UITextField {
override func textRect(forBounds bounds: CGRect) -> CGRect {
return CGRect(x: bounds.origin.x + iconWidth*2, y: bounds.origin.y, width: bounds.width, height: bounds.height)
}
override func editingRect(forBounds bounds: CGRect) -> CGRect {