개발/iOS

[iOS] IQKeyboardManager

마자용 2022. 3. 24. 07:55

- 키보드가 올라왔을 때 UI의 일부분이 가려져 보이지 않는 문제를 해결해주는 라이브러리이다.
- AppDelegate에서 세팅해준다.

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
	func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
		IQKeyboardManager.shared.enable = true
		IQKeyboardManager.shared.enableAutoToolbar = false
		IQKeyboardManager.shared.shouldResignOnTouchOutside = true

		return true
	}
}