Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions NADA-iOS-forRelease.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1689,6 +1689,7 @@
F8FC43BD26C0244D0033E151 /* ShellScript */,
F838B673298E5C5400D84340 /* Embed Foundation Extensions */,
3DFB37457B9A5C839910082B /* [CP] Embed Pods Frameworks */,
A4510748121788FC05B629DB /* [CP] Copy Pods Resources */,
);
buildRules = (
);
Expand Down Expand Up @@ -1887,6 +1888,23 @@
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
A4510748121788FC05B629DB /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-NADA-iOS-forRelease/Pods-NADA-iOS-forRelease-resources-${CONFIGURATION}-input-files.xcfilelist",
);
name = "[CP] Copy Pods Resources";
outputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-NADA-iOS-forRelease/Pods-NADA-iOS-forRelease-resources-${CONFIGURATION}-output-files.xcfilelist",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NADA-iOS-forRelease/Pods-NADA-iOS-forRelease-resources.sh\"\n";
showEnvVarsInLog = 0;
};
F8FC43BD26C0244D0033E151 /* ShellScript */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
Expand Down
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
Loading