From 2e13430ebdd25b6470ef2b31a7f64fb29e75d940 Mon Sep 17 00:00:00 2001 From: MinjaeLee <2alswo7@khu.ac.kr> Date: Mon, 20 Dec 2021 17:58:41 +0900 Subject: [PATCH] =?UTF-8?q?[FIX]=20#174=20-=20=EC=95=8C=EB=A6=BC=EC=B0=BD?= =?UTF-8?q?=20=EB=AC=B8=EA=B5=AC=20=EC=88=98=EC=A0=95=20(=EB=A6=AC?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8,=20=EB=A1=9C=EA=B7=B8=EC=95=84=EC=9B=83=20?= =?UTF-8?q?=EB=B7=B0)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ViewControllers/CardList/CardListViewController.swift | 2 +- .../Sources/ViewControllers/More/MoreViewController.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/NADA-iOS-forRelease/Sources/ViewControllers/CardList/CardListViewController.swift b/NADA-iOS-forRelease/Sources/ViewControllers/CardList/CardListViewController.swift index 4fb20594..7c192679 100644 --- a/NADA-iOS-forRelease/Sources/ViewControllers/CardList/CardListViewController.swift +++ b/NADA-iOS-forRelease/Sources/ViewControllers/CardList/CardListViewController.swift @@ -110,7 +110,7 @@ extension CardListViewController: UITableViewDelegate { // Swipe Action func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? { let deleteAction = UIContextualAction(style: .normal, title: "삭제", handler: { (_ action, _ view, _ success) in - self.makeCancelDeleteAlert(title: "명함 삭제", message: "명함을 정말 삭제하시겠습니까?", cancelAction: { _ in + self.makeCancelDeleteAlert(title: "명함 삭제", message: "명함을 정말 삭제하시겠습니까?\n공유된 명함일 경우, 친구의 명함 모음에서도 해당 명함이 삭제됩니다.", cancelAction: { _ in // 취소 눌렀을 때 액션이 들어갈 부분 }, deleteAction: { _ in // FIXME: - 카드 삭제 서버 테스트 diff --git a/NADA-iOS-forRelease/Sources/ViewControllers/More/MoreViewController.swift b/NADA-iOS-forRelease/Sources/ViewControllers/More/MoreViewController.swift index 42c352b1..45c0be6d 100644 --- a/NADA-iOS-forRelease/Sources/ViewControllers/More/MoreViewController.swift +++ b/NADA-iOS-forRelease/Sources/ViewControllers/More/MoreViewController.swift @@ -98,7 +98,7 @@ extension MoreViewController: UITableViewDelegate { } else if indexPath.section == 1 { switch indexPath.row { case 0: // 로그아웃 - makeOKCancelAlert(title: "알림", message: "로그아웃을 하시겠습니까?", okAction: { _ in + makeOKCancelAlert(title: "", message: "로그아웃을 하시겠습니까?", okAction: { _ in UserApi.shared.logout { (error) in if let error = error { print(error)