Skip to content

Instantly share code, notes, and snippets.

View fauve-'s full-sized avatar
💭
hi

PMC fauve-

💭
hi
  • pdx
View GitHub Profile
@ksmandersen
ksmandersen / PaddedTextField.swift
Last active March 27, 2023 03:33
Best way to inset text inside a UITextField
import UIKit
open class PaddedTextField: UITextField {
public var textInsets = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0) {
didSet { setNeedsDisplay() }
}
public override init(frame: CGRect) {
super.init(frame: frame)
}