Reputation: 13
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
IQKeyboardManager.shared.enable = true
IQKeyboardManager.shared.enableAutoToolbar = false
FirebaseApp.configure()
let db = Firestore.firestore()
print(db)
return true
}
Upvotes: 0
Views: 270
Reputation: 742
Go to IOS Simulator -> Hardware -> Keyboard and toggle "toggle software keyboard" or command k.
Upvotes: 2