From 8d34e42a0f77e0772c48588f6a6c0b7d64d0cb04 Mon Sep 17 00:00:00 2001 From: cirtuare Date: Fri, 31 Jan 2025 21:21:54 +0900 Subject: [PATCH 1/6] =?UTF-8?q?[Fix]=20=EC=B6=94=EC=B2=9C=20=EA=B2=80?= =?UTF-8?q?=EC=83=89=EC=96=B4=20=EB=88=8C=EB=A0=80=EC=9D=84=20=EB=95=8C=20?= =?UTF-8?q?=EB=A6=AC=EB=B7=B0=20=EA=B2=80=EC=A6=9D=20=EC=95=88=20=EB=90=98?= =?UTF-8?q?=EB=8A=94=20=EC=98=A4=EB=A5=98=20=ED=95=B4=EA=B2=B0=20(#140)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../View/SpotSearchViewController.swift | 36 +++++++++---------- 1 file changed, 16 insertions(+), 20 deletions(-) diff --git a/ACON-iOS/ACON-iOS/Presentation/Upload/View/SpotSearchViewController.swift b/ACON-iOS/ACON-iOS/Presentation/Upload/View/SpotSearchViewController.swift index 0dffd7f..3ceffff 100644 --- a/ACON-iOS/ACON-iOS/Presentation/Upload/View/SpotSearchViewController.swift +++ b/ACON-iOS/ACON-iOS/Presentation/Upload/View/SpotSearchViewController.swift @@ -176,6 +176,21 @@ private extension SpotSearchViewController { } } } + + self.spotSearchViewModel.onSuccessGetReviewVerification.bind { [weak self] onSuccess in + guard let onSuccess, let data = self?.spotSearchViewModel.reviewVerification.value else { return } + if onSuccess { + if data { + self?.hasCompletedSelection = true + self?.dismiss(animated: true) + } else { + let alertHandler = AlertHandler() + alertHandler.showLocationAccessFailImageAlert(from: self!) + } + self?.spotSearchViewModel.reviewVerification.value = nil + } + } + } } @@ -200,10 +215,7 @@ private extension SpotSearchViewController { guard let spotName = sender.currentAttributedTitle?.string else { return } selectedSpotId = sender.spotID selectedSpotName = spotName - DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) { [weak self] in - self?.hasCompletedSelection = true - self?.dismiss(animated: true) - } + spotSearchViewModel.getReviewVerification(spotId: selectedSpotId) } } @@ -244,22 +256,6 @@ extension SpotSearchViewController: UICollectionViewDelegateFlowLayout { spotSearchView.searchTextField.text = selectedSpotName self.dismissKeyboard() spotSearchViewModel.getReviewVerification(spotId: selectedSpotId) - self.spotSearchViewModel.onSuccessGetReviewVerification.bind { [weak self] onSuccess in - guard let onSuccess, let data = self?.spotSearchViewModel.reviewVerification.value else { return } - if onSuccess { - if data { - self?.hasCompletedSelection = true - self?.dismiss(animated: true) - } else { - let alertHandler = AlertHandler() - alertHandler.showLocationAccessFailImageAlert(from: self!) - } - self?.spotSearchViewModel.reviewVerification.value = nil - } - } -// self.dismissKeyboard() -// hasCompletedSelection = true -// dismiss(animated: true) } } From 5f7f0a2e1e540de086998361beaa40403fff0af1 Mon Sep 17 00:00:00 2001 From: cirtuare Date: Fri, 31 Jan 2025 21:44:58 +0900 Subject: [PATCH 2/6] =?UTF-8?q?[Fix]=20=EC=84=9C=EC=B9=98=20=EC=97=A0?= =?UTF-8?q?=ED=8B=B0=EB=B7=B0=20=EB=93=B1=EC=9E=A5=20=EB=B0=8F=20=EC=97=B0?= =?UTF-8?q?=EA=B4=80=EA=B2=80=EC=83=89=EC=96=B4=20=EB=B0=98=EC=98=81=20?= =?UTF-8?q?=EB=8A=90=EB=A6=B0=20=EC=98=A4=EB=A5=98=20=ED=95=B4=EA=B2=B0=20?= =?UTF-8?q?(#140)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Presentation/Upload/View/SpotSearchViewController.swift | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ACON-iOS/ACON-iOS/Presentation/Upload/View/SpotSearchViewController.swift b/ACON-iOS/ACON-iOS/Presentation/Upload/View/SpotSearchViewController.swift index 3ceffff..6bbac9b 100644 --- a/ACON-iOS/ACON-iOS/Presentation/Upload/View/SpotSearchViewController.swift +++ b/ACON-iOS/ACON-iOS/Presentation/Upload/View/SpotSearchViewController.swift @@ -133,11 +133,13 @@ private extension SpotSearchViewController { spotSearchViewModel.getSearchSuggestion() spotSearchView.searchSuggestionStackView.isHidden = false spotSearchView.searchKeywordCollectionView.isHidden = true + emptyStateView.isHidden = true } @objc func searchTextFieldDidChange(_ textField: UITextField) { if let text = textField.text { + emptyStateView.isHidden = text == "" spotSearchView.searchSuggestionStackView.isHidden = text != "" spotSearchView.searchKeywordCollectionView.isHidden = text == "" } @@ -166,9 +168,9 @@ private extension SpotSearchViewController { DispatchQueue.main.async { if data.count == 0 { - // TODO: - 엠티뷰 처리 + self?.emptyStateView.isHidden = self?.spotSearchView.searchTextField.text == "" self?.spotSearchView.searchKeywordCollectionView.isHidden = true - self?.emptyStateView.isHidden = false + self?.spotSearchView.searchKeywordCollectionView.reloadData() } else { self?.emptyStateView.isHidden = true self?.spotSearchView.searchKeywordCollectionView.isHidden = false From e9a85b9bd168e735026e5a811992eb3384995f70 Mon Sep 17 00:00:00 2001 From: cirtuare Date: Fri, 31 Jan 2025 21:47:56 +0900 Subject: [PATCH 3/6] =?UTF-8?q?[Chore]=20=ED=95=84=EC=9A=94=EC=97=86?= =?UTF-8?q?=EB=8A=94=20=EB=8D=94=EB=AF=B8=20=ED=8C=8C=EC=9D=BC=20=EC=82=AD?= =?UTF-8?q?=EC=A0=9C=20(#140)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ACON-iOS/ACON-iOS.xcodeproj/project.pbxproj | 32 ---------- .../Global/Utils/ACLocationManager.swift | 2 +- .../Global/Utils/Enums/DummyType.swift | 7 --- .../Network/Test/DTO/TestResponse.swift | 27 -------- .../ACON-iOS/Network/Test/TestService.swift | 34 ---------- .../Network/Test/TestTargetType.swift | 63 ------------------- .../View/SpotSearchViewController.swift | 3 +- 7 files changed, 2 insertions(+), 166 deletions(-) delete mode 100644 ACON-iOS/ACON-iOS/Global/Utils/Enums/DummyType.swift delete mode 100644 ACON-iOS/ACON-iOS/Network/Test/DTO/TestResponse.swift delete mode 100644 ACON-iOS/ACON-iOS/Network/Test/TestService.swift delete mode 100644 ACON-iOS/ACON-iOS/Network/Test/TestTargetType.swift diff --git a/ACON-iOS/ACON-iOS.xcodeproj/project.pbxproj b/ACON-iOS/ACON-iOS.xcodeproj/project.pbxproj index 37b9988..3474305 100644 --- a/ACON-iOS/ACON-iOS.xcodeproj/project.pbxproj +++ b/ACON-iOS/ACON-iOS.xcodeproj/project.pbxproj @@ -58,9 +58,6 @@ 741E689A2D3D43FF00DF99EF /* EmptyResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 741E68992D3D43FA00DF99EF /* EmptyResponse.swift */; }; 741E68A02D3D5BD400DF99EF /* TargetType+.swift in Sources */ = {isa = PBXBuildFile; fileRef = 741E689F2D3D5BCE00DF99EF /* TargetType+.swift */; }; 741E68A22D3D5FA200DF99EF /* ACService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 741E68A12D3D5F9700DF99EF /* ACService.swift */; }; - 741E68A62D3D61FA00DF99EF /* TestTargetType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 741E68A52D3D61F000DF99EF /* TestTargetType.swift */; }; - 741E68A82D3D620700DF99EF /* TestService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 741E68A72D3D620300DF99EF /* TestService.swift */; }; - 741E68AA2D3D625E00DF99EF /* TestResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 741E68A92D3D625A00DF99EF /* TestResponse.swift */; }; 741E68AC2D3D6DA800DF99EF /* HeaderType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 741E68AB2D3D6DA400DF99EF /* HeaderType.swift */; }; 74205D2F2D40351700D11557 /* SocialType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74205D2E2D40351400D11557 /* SocialType.swift */; }; 74220DD42D34363B000684BF /* SpotUploadViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74220DD32D343633000684BF /* SpotUploadViewController.swift */; }; @@ -127,7 +124,6 @@ 748D6F8F2D2BD340007690B4 /* UIButton+.swift in Sources */ = {isa = PBXBuildFile; fileRef = 748D6F8E2D2BD33D007690B4 /* UIButton+.swift */; }; 748D6F912D2BD450007690B4 /* UILabel+.swift in Sources */ = {isa = PBXBuildFile; fileRef = 748D6F902D2BD44C007690B4 /* UILabel+.swift */; }; 748D6F952D2BD4DB007690B4 /* UICollectionViewCell+.swift in Sources */ = {isa = PBXBuildFile; fileRef = 748D6F942D2BD4D6007690B4 /* UICollectionViewCell+.swift */; }; - 748D6F972D2BD544007690B4 /* DummyType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 748D6F962D2BD53F007690B4 /* DummyType.swift */; }; 748D6F992D2BD54E007690B4 /* DummyProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 748D6F982D2BD549007690B4 /* DummyProtocol.swift */; }; 748D6F9B2D2BD638007690B4 /* Pretendard-Bold.otf in Resources */ = {isa = PBXBuildFile; fileRef = 748D6F9A2D2BD638007690B4 /* Pretendard-Bold.otf */; }; 748D6F9D2D2BD641007690B4 /* Pretendard-SemiBold.otf in Resources */ = {isa = PBXBuildFile; fileRef = 748D6F9C2D2BD641007690B4 /* Pretendard-SemiBold.otf */; }; @@ -246,9 +242,6 @@ 741E68992D3D43FA00DF99EF /* EmptyResponse.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EmptyResponse.swift; sourceTree = ""; }; 741E689F2D3D5BCE00DF99EF /* TargetType+.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TargetType+.swift"; sourceTree = ""; }; 741E68A12D3D5F9700DF99EF /* ACService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ACService.swift; sourceTree = ""; }; - 741E68A52D3D61F000DF99EF /* TestTargetType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestTargetType.swift; sourceTree = ""; }; - 741E68A72D3D620300DF99EF /* TestService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestService.swift; sourceTree = ""; }; - 741E68A92D3D625A00DF99EF /* TestResponse.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestResponse.swift; sourceTree = ""; }; 741E68AB2D3D6DA400DF99EF /* HeaderType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HeaderType.swift; sourceTree = ""; }; 74205D2E2D40351400D11557 /* SocialType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SocialType.swift; sourceTree = ""; }; 74220DD32D343633000684BF /* SpotUploadViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpotUploadViewController.swift; sourceTree = ""; }; @@ -310,7 +303,6 @@ 748D6F8E2D2BD33D007690B4 /* UIButton+.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIButton+.swift"; sourceTree = ""; }; 748D6F902D2BD44C007690B4 /* UILabel+.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UILabel+.swift"; sourceTree = ""; }; 748D6F942D2BD4D6007690B4 /* UICollectionViewCell+.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UICollectionViewCell+.swift"; sourceTree = ""; }; - 748D6F962D2BD53F007690B4 /* DummyType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DummyType.swift; sourceTree = ""; }; 748D6F982D2BD549007690B4 /* DummyProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DummyProtocol.swift; sourceTree = ""; }; 748D6F9A2D2BD638007690B4 /* Pretendard-Bold.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Pretendard-Bold.otf"; sourceTree = ""; }; 748D6F9C2D2BD641007690B4 /* Pretendard-SemiBold.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Pretendard-SemiBold.otf"; sourceTree = ""; }; @@ -596,24 +588,6 @@ path = Pods; sourceTree = ""; }; - 741E68A32D3D616200DF99EF /* Test */ = { - isa = PBXGroup; - children = ( - 741E68A42D3D617400DF99EF /* DTO */, - 741E68A72D3D620300DF99EF /* TestService.swift */, - 741E68A52D3D61F000DF99EF /* TestTargetType.swift */, - ); - path = Test; - sourceTree = ""; - }; - 741E68A42D3D617400DF99EF /* DTO */ = { - isa = PBXGroup; - children = ( - 741E68A92D3D625A00DF99EF /* TestResponse.swift */, - ); - path = DTO; - sourceTree = ""; - }; 74220DD12D34361E000684BF /* Upload */ = { isa = PBXGroup; children = ( @@ -857,7 +831,6 @@ 746F15B42D3E2041003EA031 /* LocalVerification */, 746261602D3E9F6000A4E84F /* Upload */, D6AF15612D3E8A3700289683 /* Onboarding */, - 741E68A32D3D616200DF99EF /* Test */, 743069872D3D2EDA0033178C /* Base */, 15CD25752D3FE2D800320006 /* SpotList */, ); @@ -959,7 +932,6 @@ 746261702D3EA50700A4E84F /* SpotCategoryType.swift */, 741E68AB2D3D6DA400DF99EF /* HeaderType.swift */, 74CDCE532D310A1100E3A21A /* ACFontStyleType.swift */, - 748D6F962D2BD53F007690B4 /* DummyType.swift */, ); path = Enums; sourceTree = ""; @@ -1440,7 +1412,6 @@ 1547A8852D3595B600E96616 /* SpotListFilterModel.swift in Sources */, 748D6F8B2D2BD31B007690B4 /* UIStackView+.swift in Sources */, 748D6F912D2BD450007690B4 /* UILabel+.swift in Sources */, - 741E68AA2D3D625E00DF99EF /* TestResponse.swift in Sources */, 746261772D3EA88700A4E84F /* GetAcornCountResponse.swift in Sources */, D61917E92D3E4410001BF0EE /* OnboardingTargetType.swift in Sources */, 742544062D413CCD004F950F /* SpotListCollectionViewFooter.swift in Sources */, @@ -1449,7 +1420,6 @@ 748ECA6B2D31918D00BBC981 /* LoginView.swift in Sources */, D6EA38152D42B88F002B68B9 /* SearchEmptyView.swift in Sources */, 1547A6F22D33AD4500E96616 /* SpotModel.swift in Sources */, - 748D6F972D2BD544007690B4 /* DummyType.swift in Sources */, 746261732D3EA78700A4E84F /* GetReiviewVerificationRequest.swift in Sources */, 74BF92022D385D8700B923E3 /* MenuCollectionViewCell.swift in Sources */, 74220DD42D34363B000684BF /* SpotUploadViewController.swift in Sources */, @@ -1462,7 +1432,6 @@ 745C7E042D3599DF0074DBDB /* SpotSearchViewController.swift in Sources */, 74B25C2C2D2FEE8E008BDCB7 /* Config.swift in Sources */, 74054ECA2D32534200D1CDE4 /* MultitaskDelegate.swift in Sources */, - 741E68A62D3D61FA00DF99EF /* TestTargetType.swift in Sources */, 748D6F8F2D2BD340007690B4 /* UIButton+.swift in Sources */, 746261792D3EA8DF00A4E84F /* UploadTargetType.swift in Sources */, 741A07572D3558FE00778219 /* ReviewFinishedView.swift in Sources */, @@ -1542,7 +1511,6 @@ 745C7E152D35AEC10074DBDB /* SpotSearchViewModel.swift in Sources */, D6E452932D3AA47500CBED02 /* ProfileView.swift in Sources */, D6E452942D3AA47500CBED02 /* ProfileViewController.swift in Sources */, - 741E68A82D3D620700DF99EF /* TestService.swift in Sources */, 748D6F6B2D2BCA1C007690B4 /* ViewController.swift in Sources */, 15A3F6A82D36D5B900577E16 /* FilterTagButtonStackLineType.swift in Sources */, ); diff --git a/ACON-iOS/ACON-iOS/Global/Utils/ACLocationManager.swift b/ACON-iOS/ACON-iOS/Global/Utils/ACLocationManager.swift index 24bdf25..dfa4e94 100644 --- a/ACON-iOS/ACON-iOS/Global/Utils/ACLocationManager.swift +++ b/ACON-iOS/ACON-iOS/Global/Utils/ACLocationManager.swift @@ -68,7 +68,7 @@ class ACLocationManager: NSObject { } func checkUserDeviceLocationServiceAuthorization() { - // Execute on background thread to prevent UI blocking + // NOTE: - Execute on background thread to prevent UI blocking ?? DispatchQueue.global().async { [weak self] in guard CLLocationManager.locationServicesEnabled() else { DispatchQueue.main.async { diff --git a/ACON-iOS/ACON-iOS/Global/Utils/Enums/DummyType.swift b/ACON-iOS/ACON-iOS/Global/Utils/Enums/DummyType.swift deleted file mode 100644 index f617db5..0000000 --- a/ACON-iOS/ACON-iOS/Global/Utils/Enums/DummyType.swift +++ /dev/null @@ -1,7 +0,0 @@ -// -// DummyType.swift -// ACON-iOS -// -// Created by 이수민 on 1/6/25. -// - diff --git a/ACON-iOS/ACON-iOS/Network/Test/DTO/TestResponse.swift b/ACON-iOS/ACON-iOS/Network/Test/DTO/TestResponse.swift deleted file mode 100644 index 14fc4d3..0000000 --- a/ACON-iOS/ACON-iOS/Network/Test/DTO/TestResponse.swift +++ /dev/null @@ -1,27 +0,0 @@ -// -// TestResponse.swift -// ACON-iOS -// -// Created by 이수민 on 1/20/25. -// - -import Foundation - - -struct TestResponse: Codable { - - let menuList: [MenuInfo] - -} - -struct MenuInfo: Codable { - - let id: Int64 - - let name: String - - let price: Int - - let image: String - -} diff --git a/ACON-iOS/ACON-iOS/Network/Test/TestService.swift b/ACON-iOS/ACON-iOS/Network/Test/TestService.swift deleted file mode 100644 index 4dd4da5..0000000 --- a/ACON-iOS/ACON-iOS/Network/Test/TestService.swift +++ /dev/null @@ -1,34 +0,0 @@ -// -// TestService.swift -// ACON-iOS -// -// Created by 이수민 on 1/20/25. -// - -import Foundation - -import Moya - -protocol TestServiceProtocol { - - func getMenuList(spotID: Int, completion: @escaping (NetworkResult) -> Void) - -} - -final class TestService: BaseService, TestServiceProtocol { - - let service = BaseService() - - func getMenuList(spotID: Int, completion: @escaping (NetworkResult) -> Void) { - service.provider.request(.getMenuList(spotID: spotID)) { result in - switch result { - case .success(let response): - let networkResult: NetworkResult = self.judgeStatus(statusCode: response.statusCode, data: response.data, type: TestResponse.self) - completion(networkResult) - case .failure(let errorResponse): - print(errorResponse) - } - } - } - -} diff --git a/ACON-iOS/ACON-iOS/Network/Test/TestTargetType.swift b/ACON-iOS/ACON-iOS/Network/Test/TestTargetType.swift deleted file mode 100644 index a6f7da3..0000000 --- a/ACON-iOS/ACON-iOS/Network/Test/TestTargetType.swift +++ /dev/null @@ -1,63 +0,0 @@ -// -// TestTargetType.swift -// ACON-iOS -// -// Created by 이수민 on 1/20/25. -// - -import Foundation - -import Moya - -enum TestTargetType { - - case getMenuList(spotID: Int) - -} - -extension TestTargetType: TargetType { - - var method: Moya.Method { - switch self { - case .getMenuList: - return .get - } - } - - var path: String { - switch self { - case .getMenuList(let spotID): - return utilPath + "spot/\(spotID)/menus" - } - } - - var parameter: [String : Any]? { - switch self { -// NOTE: 파라미터 있으면 이렇게 처리 -// case .getMenuInfo(let id): -// return ["id" : id] - default: - return .none - } - } - - var task: Task { - return .requestPlain - // NOTE: 파라미터 있으면 이렇게 처리 -// if let parameter = parameter { -// return .requestParameters(parameters: parameter, encoding: URLEncoding.default) -// } else { -// return .requestPlain -// } - } - - var headers: [String : String]? { - // NOTE: header type 볼 것 - // NOTE: accessToken은 다음과 같이 부르면 됨 -> 현재 토큰 설정을 안 해서 오류 뜨는 게 당연함!!!!!!!! - // let token = UserDefaults.standard.string(forKey: StringLiterals.Network.accessToken) ?? "" - // let headers = HeaderType.headerWithToken(token: "Bearer " + token) - let headers = HeaderType.noHeader - return headers - } - -} diff --git a/ACON-iOS/ACON-iOS/Presentation/Upload/View/SpotSearchViewController.swift b/ACON-iOS/ACON-iOS/Presentation/Upload/View/SpotSearchViewController.swift index 6bbac9b..92a0739 100644 --- a/ACON-iOS/ACON-iOS/Presentation/Upload/View/SpotSearchViewController.swift +++ b/ACON-iOS/ACON-iOS/Presentation/Upload/View/SpotSearchViewController.swift @@ -82,7 +82,7 @@ class SpotSearchViewController: BaseViewController { override func setHierarchy() { super.setHierarchy() - self.view.addSubviews(spotSearchView,emptyStateView) + self.view.addSubviews(spotSearchView, emptyStateView) } override func setLayout() { @@ -107,7 +107,6 @@ class SpotSearchViewController: BaseViewController { emptyStateView.do { $0.isHidden = true } - } func addTarget() { From 6191baac7e30f3b43b5eda59bd3875d4f0dcbcab Mon Sep 17 00:00:00 2001 From: cirtuare Date: Fri, 31 Jan 2025 21:52:28 +0900 Subject: [PATCH 4/6] =?UTF-8?q?[Chore]=20=EC=9E=A5=EC=86=8C=20=EC=83=81?= =?UTF-8?q?=EC=84=B8=20=EC=A3=BC=EC=86=8C=EB=AA=85=20=ED=99=94=EB=A9=B4=20?= =?UTF-8?q?=EB=84=98=EC=96=B4=EA=B0=80=EC=A7=80=20=EC=95=8A=EA=B2=8C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95=20(#140)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ACON-iOS/Presentation/SpotDetail/View/SpotDetailView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/ACON-iOS/ACON-iOS/Presentation/SpotDetail/View/SpotDetailView.swift b/ACON-iOS/ACON-iOS/Presentation/SpotDetail/View/SpotDetailView.swift index b764fef..f0ecf12 100644 --- a/ACON-iOS/ACON-iOS/Presentation/SpotDetail/View/SpotDetailView.swift +++ b/ACON-iOS/ACON-iOS/Presentation/SpotDetail/View/SpotDetailView.swift @@ -143,6 +143,7 @@ final class SpotDetailView: BaseView { addressLabel.snp.makeConstraints { $0.top.equalToSuperview().inset(ScreenUtils.heightRatio*342 + navViewHeight) $0.leading.equalToSuperview().inset(ScreenUtils.widthRatio*38) + $0.trailing.equalToSuperview().inset(ScreenUtils.widthRatio*20) $0.height.equalTo(18) } From e5996dfb17101ce52fd5664363e7097b33c19711 Mon Sep 17 00:00:00 2001 From: cirtuare Date: Fri, 31 Jan 2025 21:53:25 +0900 Subject: [PATCH 5/6] =?UTF-8?q?[Chore]=20=ED=95=84=EC=9A=94=EC=97=86?= =?UTF-8?q?=EB=8A=94=20=EC=BD=94=EB=93=9C=20=EC=82=AD=EC=A0=9C=20(#140)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ACON-iOS/ACON-iOS/Network/Base/ACService.swift | 2 -- 1 file changed, 2 deletions(-) diff --git a/ACON-iOS/ACON-iOS/Network/Base/ACService.swift b/ACON-iOS/ACON-iOS/Network/Base/ACService.swift index 052f4eb..3920d7d 100644 --- a/ACON-iOS/ACON-iOS/Network/Base/ACService.swift +++ b/ACON-iOS/ACON-iOS/Network/Base/ACService.swift @@ -15,8 +15,6 @@ final class ACService { private init() {} - lazy var testService: TestService = TestService() - lazy var authService: AuthService = AuthService() lazy var spotDetailService: SpotDetailService = SpotDetailService() From f2a32d6f1c73d887e173b53181283b35fe8059f9 Mon Sep 17 00:00:00 2001 From: cirtuare Date: Fri, 31 Jan 2025 22:07:13 +0900 Subject: [PATCH 6/6] =?UTF-8?q?[Chore]=20=EB=B9=8C=EB=93=9C=20=EB=B2=84?= =?UTF-8?q?=EC=A0=84=201.0(5)=EB=A1=9C=20=EC=97=85=EB=8D=B0=EC=9D=B4?= =?UTF-8?q?=ED=8A=B8=20(#140)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ACON-iOS/ACON-iOS.xcodeproj/project.pbxproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ACON-iOS/ACON-iOS.xcodeproj/project.pbxproj b/ACON-iOS/ACON-iOS.xcodeproj/project.pbxproj index 3474305..759022c 100644 --- a/ACON-iOS/ACON-iOS.xcodeproj/project.pbxproj +++ b/ACON-iOS/ACON-iOS.xcodeproj/project.pbxproj @@ -1540,7 +1540,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 5; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = KX5Q77JSUF; GENERATE_INFOPLIST_FILE = YES; @@ -1577,7 +1577,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 5; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = KX5Q77JSUF; GENERATE_INFOPLIST_FILE = YES;