Skip to content

Instantly share code, notes, and snippets.

@Aymarick
Created June 1, 2016 12:42
Show Gist options
  • Save Aymarick/36574606696c3f4606f0f9383fa1a114 to your computer and use it in GitHub Desktop.
Save Aymarick/36574606696c3f4606f0f9383fa1a114 to your computer and use it in GitHub Desktop.
//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()
}
}
}
@iGranDav
Copy link

iGranDav commented Jun 1, 2016

awesome thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment