[Swift iOS] Keyboard Overlapping UITextField solution: IQKeyboardManagerSwift, RxKeyboard

JB
May 7, 2021

--

While developing with Swift, you may suffer how inconveniently UITextField is developed at least once.

My concerns are as follows:

  • Keyboard dismissal
  • Keyboard hides UI

etc.,

Keyboard dismissal solution:

  1. import IQKeyboardManagerSwift
  2. Add below code in AppDelegateor SceneDelegate

Keyboard hides UI solution:

  1. import RxKeyboard
  2. Add following code which reactively measure height of keyboard:

--

--