Created
June 1, 2016 12:42
-
-
Save Aymarick/36574606696c3f4606f0f9383fa1a114 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//To prevent the 4-5 seconds lags when you show the keyboard for the first time | |
import UIKit | |
extension UIApplication { | |
func cacheKeyboard() | |
{ | |
let textField = UITextField() | |
if let window = windows.last { | |
window.addSubview(textField) | |
textField.becomeFirstResponder() | |
textField.resignFirstResponder() | |
textField.removeFromSuperview() | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
awesome thanks!