본문 바로가기
개발/iOS

[iOS] IQKeyboardManager

by 마자용 2022. 3. 24.

- 키보드가 올라왔을 때 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
	}
}

'개발 > iOS' 카테고리의 다른 글

[iOS] 서브뷰와 addSubView  (0) 2022.04.14
[iOS] Carousel 구현 아이디어  (0) 2022.03.24
[iOS] iOS는 어떻게 이루어져 있을까?  (0) 2022.03.19
[iOS] UDID (Unique Device Identifier)  (2) 2022.03.16
[iOS] UICollectionView  (0) 2022.03.12

댓글