I am facing issue on login through Google SignIn. Actually not showing keyboard on iOS 13.2.2 at iPhone. Please check below images.

Asked
Active
Viewed 691 times
2
Chandan Jee
- 5,440
- 4
- 16
- 24
-
See this - https://stackoverflow.com/questions/24420873/xcode-6-keyboard-does-not-show-up-in-simulator?rq=1 – shraddha11 Feb 17 '20 at 09:52
-
Already check this link. – Chandan Jee Feb 17 '20 at 10:19
-
Hi, currently I'm facing the same problem as above ( not 100% ). Did you resolve this problem? – Nguyễn Hoàng Thiên Phước Jul 02 '20 at 02:21
-
@NguyễnHoàngThiênPhước Delete scene delegate from project. after that resolve it. – Chandan Jee Jul 07 '20 at 17:17
1 Answers
0
Try to set presentingViewController to window.rootViewController in the SceneDelegate:
let window = UIWindow(windowScene: windowScene)
window.rootViewController = UIHostingController(rootView: contentView)
GIDSignIn.sharedInstance().presentingViewController = window.rootViewController
self.window = window
window.makeKeyAndVisible()
Viktoria
- 119
- 6