From 90f1d1ac520e2ffb2bd6c60db5a4a0d6aedc78cd Mon Sep 17 00:00:00 2001 From: junseopark0331 Date: Wed, 27 Dec 2023 23:28:51 +0900 Subject: [PATCH] =?UTF-8?q?[#195]=20=F0=9F=97=91=EF=B8=8F=20newClubButton?= =?UTF-8?q?=EA=B3=BC=20=EA=B4=80=EB=A0=A8=EB=90=9C=20=EC=BD=94=EB=93=9C=20?= =?UTF-8?q?=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- iOS/Sources/Presentation/Scene/Main/Home/HomeVC.swift | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/iOS/Sources/Presentation/Scene/Main/Home/HomeVC.swift b/iOS/Sources/Presentation/Scene/Main/Home/HomeVC.swift index fa2486d0..249b4fee 100644 --- a/iOS/Sources/Presentation/Scene/Main/Home/HomeVC.swift +++ b/iOS/Sources/Presentation/Scene/Main/Home/HomeVC.swift @@ -24,10 +24,6 @@ final class HomeVC: TabmanViewController, View { style: .plain, target: nil, action: nil) - private let newClubButton = UIBarButtonItem(image: .init(systemName: "plus.app")?.tintColor(GCMSAsset.Colors.gcmsGray4.color), - style: .plain, - target: nil, - action: nil) private lazy var indicator = LottieAnimationView(name: "GCMS-Indicator").then { $0.contentMode = .scaleAspectFit $0.loopMode = .loop @@ -112,7 +108,6 @@ private extension HomeVC { } func configNavigation() { self.navigationItem.leftBarButtonItem = UIBarButtonItem.init(customView: titleLabel) - self.navigationItem.setRightBarButtonItems([myPageButton, newClubButton], animated: true) self.navigationItem.configBack() } func bindAction(reactor: HomeReactor) { @@ -126,11 +121,6 @@ private extension HomeVC { .map { _ in Reactor.Action.myPageButtonDidTap } .bind(to: reactor.action) .disposed(by: disposeBag) - - newClubButton.rx.tap - .map { _ in Reactor.Action.newClubButtonDidTap } - .bind(to: reactor.action) - .disposed(by: disposeBag) } func bindState(reactor: HomeReactor) { let sharedState = reactor.state.share(replay: 3).observe(on: MainScheduler.asyncInstance)