가끔 앱 개발을 하다가 실행시키면 키보드가 화면을 가리는 경우가 발생합니다.
이럴 때 유용한 방법을 알려드릴게요!
엄청 쉬워요 ㅎㅎ
프로젝트 Podfile에 pod 'IQKeyboardManagerSwift' 를 추가하고 install 해주세요
import UIKit
import IQKeyboardManagerSwift
@main class AppDelegate: UIResponder, UIApplicationDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
IQKeyboardManager.shared.enable = true
return true
}
그 후 AppDelegate에 다음과 같이 작성하면 끝!!
'iOS > 오픈소스' 카테고리의 다른 글
swift - BottomSheet (0) | 2021.09.03 |
---|