Skip to content

Commit

Permalink
fix: IQKeyboardManager renamed 된 메서드 반영 (TeamNADA#696)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyun99999 committed Apr 13, 2024
1 parent 5c46208 commit 44a2dc2
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class BackCardCreationCollectionViewCell: UICollectionViewCell {

extension BackCardCreationCollectionViewCell {
private func setUI() {
IQKeyboardManager.shared.shouldResignOnTouchOutside = true
IQKeyboardManager.shared.resignOnTouchOutside = true

initCollectionViewList()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class CompanyFrontCardCreationCollectionViewCell: UICollectionViewCell {

extension CompanyFrontCardCreationCollectionViewCell {
private func setUI() {
IQKeyboardManager.shared.shouldResignOnTouchOutside = true
IQKeyboardManager.shared.resignOnTouchOutside = true

initUITextFieldList()
backgroundSettingCollectionView.showsHorizontalScrollIndicator = false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class FanFrontCardCreationCollectionViewCell: UICollectionViewCell {

extension FanFrontCardCreationCollectionViewCell {
private func setUI() {
IQKeyboardManager.shared.shouldResignOnTouchOutside = true
IQKeyboardManager.shared.resignOnTouchOutside = true

initUITextFieldList()
backgroundSettingCollectionView.showsHorizontalScrollIndicator = false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class FrontCardCreationCollectionViewCell: UICollectionViewCell {

extension FrontCardCreationCollectionViewCell {
private func setUI() {
IQKeyboardManager.shared.shouldResignOnTouchOutside = true
IQKeyboardManager.shared.resignOnTouchOutside = true

initUITextFieldList()
backgroundSettingCollectionView.showsHorizontalScrollIndicator = false
Expand Down
2 changes: 1 addition & 1 deletion NADA-iOS-forRelease/Sources/SceneDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate {

IQKeyboardManager.shared.enable = true
IQKeyboardManager.shared.enableAutoToolbar = false
IQKeyboardManager.shared.shouldResignOnTouchOutside = true
IQKeyboardManager.shared.resignOnTouchOutside = true

let isDark = defaults.bool(forKey: Const.UserDefaultsKey.darkModeState)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class AddGroupBottomSheetViewController: CommonBottomSheetViewController, UIText

setupUI()
addGroupTextField.delegate = self
IQKeyboardManager.shared.shouldResignOnTouchOutside = false
IQKeyboardManager.shared.resignOnTouchOutside = false
}

override func viewDidAppear(_ animated: Bool) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class AddWithIdBottomSheetViewController: CommonBottomSheetViewController, UITex

setupUI()
addWithIdTextField.delegate = self
IQKeyboardManager.shared.shouldResignOnTouchOutside = false
IQKeyboardManager.shared.resignOnTouchOutside = false
}

override func viewDidAppear(_ animated: Bool) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class GroupNameEditBottomSheetViewController: CommonBottomSheetViewController, U

setupUI()
addGroupTextField.delegate = self
IQKeyboardManager.shared.shouldResignOnTouchOutside = false
IQKeyboardManager.shared.resignOnTouchOutside = false
}

override func viewDidAppear(_ animated: Bool) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class SendTagSheetVC: UIViewController {
super.viewWillAppear(animated)

IQKeyboardManager.shared.enable = false
IQKeyboardManager.shared.shouldResignOnTouchOutside = false
IQKeyboardManager.shared.resignOnTouchOutside = false
}

override func viewIsAppearing(_ animated: Bool) {
Expand Down

0 comments on commit 44a2dc2

Please sign in to comment.