Skip to content

Instantly share code, notes, and snippets.

@Laeyoung
Laeyoung / uitextfieldwithpadding
Last active July 20, 2018 14:02 — forked from lawreyios/uitextfieldwithpadding
Add padding to UITextField - Swift 3.0
class CustomSearchTextField: UITextField {
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}
override func textRect(forBounds bounds: CGRect) -> CGRect {
return UIEdgeInsetsInsetRect(bounds, UIEdgeInsetsMake(0, 15, 0, 15))
}
override func editingRect(forBounds bounds: CGRect) -> CGRect {