Skip to content

Instantly share code, notes, and snippets.

View kevinmlong's full-sized avatar

Kevin Long kevinmlong

View GitHub Profile
@kevinmlong
kevinmlong / UIViewController-UnocculdedTextField-Full.swift
Last active December 15, 2019 18:38
Unoccluded UITextField Extension (Full Source)
import UIKit
import ObjectiveC
struct AssociatedKeys {
static var activeTextField: UInt8 = 0
static var keyboardHeight: UInt8 = 1
}
extension UIViewController : UITextFieldDelegate {