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-Keyboard-Events.swift
Last active July 10, 2018 10:45
Unoccluded UITextField Extension (Keyboard Events)
import UIKit
import ObjectiveC
struct AssociatedKeys {
static var activeTextField: UInt8 = 0
static var keyboardHeight: UInt8 = 1
}
extension UIViewController : UITextFieldDelegate {