Skip to content

Instantly share code, notes, and snippets.

@vvit
vvit / swizzling.swift
Last active November 23, 2017 09:10
Swizzling
// AppDelegate
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
UIViewController.doSwizzleStuff()
}
// extension
// MARK: - Swizzling
private var hasSwizzled = false
extension UIViewController {