diff --git a/ByeBoo-iOS/ByeBoo-iOS.xcodeproj/project.pbxproj b/ByeBoo-iOS/ByeBoo-iOS.xcodeproj/project.pbxproj index fd95eefb..814438d8 100644 --- a/ByeBoo-iOS/ByeBoo-iOS.xcodeproj/project.pbxproj +++ b/ByeBoo-iOS/ByeBoo-iOS.xcodeproj/project.pbxproj @@ -307,7 +307,7 @@ CODE_SIGN_ENTITLEMENTS = "ByeBoo-iOS/ByeBoo-Dev.entitlements"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 9; + CURRENT_PROJECT_VERSION = 10; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = Z6682N5G5D; @@ -351,7 +351,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 9; + CURRENT_PROJECT_VERSION = 10; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = Z6682N5G5D; GENERATE_INFOPLIST_FILE = YES; @@ -512,7 +512,7 @@ buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 9; + CURRENT_PROJECT_VERSION = 10; GENERATE_INFOPLIST_FILE = YES; IPHONEOS_DEPLOYMENT_TARGET = 18.2; MACOSX_DEPLOYMENT_TARGET = 15.2; @@ -534,7 +534,7 @@ buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 9; + CURRENT_PROJECT_VERSION = 10; GENERATE_INFOPLIST_FILE = YES; IPHONEOS_DEPLOYMENT_TARGET = 18.2; MACOSX_DEPLOYMENT_TARGET = 15.2; diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/MyPage/ViewController/NewJourneySelectViewController.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/MyPage/ViewController/NewJourneySelectViewController.swift index b04b8f44..21387d73 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/MyPage/ViewController/NewJourneySelectViewController.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/MyPage/ViewController/NewJourneySelectViewController.swift @@ -93,15 +93,19 @@ extension NewJourneySelectViewController { @objc private func journeyDidTap(_ tapRecognizer: UITapGestureRecognizer) { guard let journeyView = tapRecognizer.view as? OneLineTextBoxView else { return } - ByeBooLogger.debug(journeyView.title) + let journeyTitle = journeyView.title + .replacingOccurrences(of: "여정", with: "") + .trimmingCharacters(in: .whitespaces) + let journeyType = JourneyType.titleToEnum(journeyTitle) ?? .recording + + ByeBooLogger.debug(journeyType.title) let viewController = ViewControllerFactory.shared.makeQuestStartViewController() - viewController.configure(journeyTitle: journeyView.title) + viewController.configure(journeyTitle: journeyType.title) viewController.modalPresentationStyle = .fullScreen viewController.delegate = self self.present(viewController, animated: false) - let journeyType = JourneyType.titleToEnum(journeyView.title) ?? .recording let property = QuestEvents.NewJourneyProperty(newJourneyType: journeyType.mixpanelKey) Mixpanel.mainInstance().track( event: QuestEvents.Name.journeyNewClick, diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/Common/QuestTabItem.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/Common/QuestTabItem.swift index 31d1c67c..4b3b4864 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/Common/QuestTabItem.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/Common/QuestTabItem.swift @@ -24,7 +24,7 @@ enum QuestTabItem: TabItem { var image: UIImage { switch self { case .myJourney: - return .myJourney + return .myOn case .commonJourney: return .commonJourney } diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/Cells/CommonQuestAnswerCell.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/Cells/CommonQuestAnswerCell.swift index cddca866..7419c854 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/Cells/CommonQuestAnswerCell.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/Cells/CommonQuestAnswerCell.swift @@ -12,7 +12,6 @@ import SnapKit final class CommonQuestAnswerCell: UITableViewCell { private var answerID: Int? - private var containerBottomConstraint: Constraint? private let containerView = UIView() private let userIconView = UIImageView() @@ -73,7 +72,7 @@ final class CommonQuestAnswerCell: UITableViewCell { containerView.snp.makeConstraints { $0.top.equalToSuperview().inset(24.adjustedH) $0.horizontalEdges.equalToSuperview().inset(24.adjustedW) - containerBottomConstraint = $0.bottom.equalToSuperview().constraint + $0.bottom.equalToSuperview() } userIconView.snp.makeConstraints { $0.top.equalToSuperview().inset(16.adjustedH) @@ -103,8 +102,7 @@ extension CommonQuestAnswerCell { func bind( profileIcon: UIImage?, answer: CommonQuestAnswerEntity, - writtenAt: String, - isLast: Bool + writtenAt: String ) { if let profileIcon { userIconView.image = profileIcon @@ -112,11 +110,7 @@ extension CommonQuestAnswerCell { userNicknameLabel.text = answer.writer answerContentLabel.text = answer.content writtenDateLabel.text = writtenAt - answerID = answer.answerID - - let inset = isLast ? 24.adjustedH : 0 - containerBottomConstraint?.update(inset: inset) } func getAnswewrID() -> Int? { diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/CommonQuestView.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/CommonQuestView.swift index d28e2ade..89f9ad1d 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/CommonQuestView.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/CommonQuestView.swift @@ -24,6 +24,12 @@ final class CommonQuestView: BaseView { height: 152.adjustedH ) $0.tableHeaderView = headerView + $0.contentInset = UIEdgeInsets( + top: 0, + left: 0, + bottom: 24, + right: 0 + ) $0.sectionHeaderTopPadding = 0 $0.separatorStyle = .none } diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/DateNavigator.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/DateNavigator.swift index 26bac27b..ad5b0772 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/DateNavigator.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/DateNavigator.swift @@ -35,8 +35,8 @@ final class DateNavigator: UITableViewHeaderFooterView { self.minDate = DateComponents( calendar: calendar, year: 2026, - month: 3, - day: 6 + month: 4, + day: 1 ).date ?? .now super.init(reuseIdentifier: reuseIdentifier) diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewController/ArchiveQuestViewController.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewController/ArchiveQuestViewController.swift index 5599db80..f9d2da4b 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewController/ArchiveQuestViewController.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewController/ArchiveQuestViewController.swift @@ -52,7 +52,15 @@ final class ArchiveQuestViewController: BaseViewController { guard let entryViewController else { return } switch entryViewController { - case .writeQuest, .questMain: + case .writeQuest: + ByeBooNavigationBar.makeNavigationBar( + navigationItem: self.navigationItem, + navigationController: self.navigationController, + type: .close(header: .clear), + action: #selector(close), + secondAction: #selector(editButtonDidTap) + ) + case .questMain: ByeBooNavigationBar.makeNavigationBar( navigationItem: self.navigationItem, navigationController: self.navigationController, diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewController/CommonQuestViewController.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewController/CommonQuestViewController.swift index c149cfbd..924c64bd 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewController/CommonQuestViewController.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewController/CommonQuestViewController.swift @@ -260,15 +260,13 @@ extension CommonQuestViewController: UITableViewDataSource { let answer = viewModel.getAnswer(at: indexPath.row - 1) let profileIcon = viewModel.getProfileIcon(at: indexPath.row - 1) let writtenAt = viewModel.getWrittenAt(at: indexPath.row - 1) - let isLast = viewModel.isLast(at: indexPath.row - 1) if let answer, let writtenAt { cell.bind( profileIcon: profileIcon, answer: answer, - writtenAt: writtenAt, - isLast: isLast + writtenAt: writtenAt ) } diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewController/WriteActiveTypeQuestViewController.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewController/WriteActiveTypeQuestViewController.swift index fd11e45f..b20bf368 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewController/WriteActiveTypeQuestViewController.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewController/WriteActiveTypeQuestViewController.swift @@ -199,9 +199,9 @@ extension WriteActiveTypeQuestViewController: ToastPresentable, ToastErrorHandle guard let self else { return } switch result { case true: - self.navigationItem.rightBarButtonItem?.isEnabled = true + self.navigationItem.rightBarButtonItems?[1].isEnabled = true case false: - self.navigationItem.rightBarButtonItem?.isEnabled = false + self.navigationItem.rightBarButtonItems?[1].isEnabled = false } } .store(in: &cancellables) @@ -309,7 +309,7 @@ extension WriteActiveTypeQuestViewController: EditQuestProtocol { rootView.updateImageCountLabel(count: 1) rootView.imageContainer.changeIconHidden() rootView.textCountLabel.text = "\(answerText.count)/\(rootView.limitCount)" - self.navigationItem.rightBarButtonItem?.isEnabled = false + self.navigationItem.rightBarButtonItems?[1].isEnabled = false if questAnswer.isEmpty { rootView.questTextField.textView.text = "꼭 적지 않아도 괜찮지만, 글로 정리해 보면 스스로에게 한 걸음 더 가까워질 수 있어요." @@ -325,9 +325,9 @@ extension WriteActiveTypeQuestViewController: EditQuestProtocol { extension WriteActiveTypeQuestViewController: QuestCompleteProtocol { func changeCount(count: Int) { if count == 1 { - self.navigationItem.rightBarButtonItem?.isEnabled = true + self.navigationItem.rightBarButtonItems?[1].isEnabled = true } else { - self.navigationItem.rightBarButtonItem?.isEnabled = false + self.navigationItem.rightBarButtonItems?[1].isEnabled = false } } diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewController/WriteQuestBaseViewController.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewController/WriteQuestBaseViewController.swift index 6d029e49..a52661f0 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewController/WriteQuestBaseViewController.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewController/WriteQuestBaseViewController.swift @@ -66,7 +66,7 @@ class WriteQuestBaseViewController: secondAction: #selector(confirmButtonDidTap) ) - self.navigationItem.rightBarButtonItem?.isEnabled = false + self.navigationItem.rightBarButtonItems?[1].isEnabled = false } override func viewWillDisappear(_ animated: Bool) { diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewController/WriteQuestionTypeQuestViewController.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewController/WriteQuestionTypeQuestViewController.swift index e7898cd9..0dbd56b0 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewController/WriteQuestionTypeQuestViewController.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewController/WriteQuestionTypeQuestViewController.swift @@ -183,9 +183,9 @@ extension WriteQuestionTypeQuestViewController: ToastPresentable, ToastErrorHand guard let self else { return } switch result { case true: - self.navigationItem.rightBarButtonItem?.isEnabled = true + self.navigationItem.rightBarButtonItems?[1].isEnabled = true case false: - self.navigationItem.rightBarButtonItem?.isEnabled = false + self.navigationItem.rightBarButtonItems?[1].isEnabled = false } } .store(in: &cancellables) @@ -387,7 +387,7 @@ extension WriteQuestionTypeQuestViewController: EditQuestProtocol { setQuestTextField(answer: questAnswer) rootView.textCountLabel.text = "\(answerText.count)/\(rootView.limitCount)" - self.navigationItem.rightBarButtonItem?.isEnabled = false + self.navigationItem.rightBarButtonItems?[1].isEnabled = false } } diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewModel/CommonQuestViewModel.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewModel/CommonQuestViewModel.swift index e2246e74..06b6f30f 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewModel/CommonQuestViewModel.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/ViewModel/CommonQuestViewModel.swift @@ -176,8 +176,4 @@ extension CommonQuestViewModel { return DateFormatter.toDisplayDateString(from: writtenAt) } } - - func isLast(at index: Int) -> Bool { - answersCount == answers.count && index == answers.count - 1 - } } diff --git a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/QuestTabBar/common_journey.imageset/Contents.json b/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/common_journey.imageset/Contents.json similarity index 100% rename from ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/QuestTabBar/common_journey.imageset/Contents.json rename to ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/common_journey.imageset/Contents.json diff --git a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/QuestTabBar/common_journey.imageset/common_journey_sharp.svg b/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/common_journey.imageset/common_journey_sharp.svg similarity index 100% rename from ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/QuestTabBar/common_journey.imageset/common_journey_sharp.svg rename to ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/common_journey.imageset/common_journey_sharp.svg diff --git a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/my-off.imageset/Contents.json b/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/my-off.imageset/Contents.json deleted file mode 100644 index ca326962..00000000 --- a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/my-off.imageset/Contents.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "images" : [ - { - "filename" : "mu-off.png", - "idiom" : "universal", - "scale" : "1x" - }, - { - "idiom" : "universal", - "scale" : "2x" - }, - { - "idiom" : "universal", - "scale" : "3x" - } - ], - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/my-off.imageset/mu-off.png b/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/my-off.imageset/mu-off.png deleted file mode 100644 index dd9ba27b..00000000 Binary files a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/my-off.imageset/mu-off.png and /dev/null differ diff --git a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/my-on.imageset/Contents.json b/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/my-on.imageset/Contents.json deleted file mode 100644 index 5e56c454..00000000 --- a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/my-on.imageset/Contents.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "images" : [ - { - "filename" : "my-on.png", - "idiom" : "universal", - "scale" : "1x" - }, - { - "idiom" : "universal", - "scale" : "2x" - }, - { - "idiom" : "universal", - "scale" : "3x" - } - ], - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/share_selected.imageset/Contents.json b/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/my_on.imageset/Contents.json similarity index 54% rename from ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/share_selected.imageset/Contents.json rename to ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/my_on.imageset/Contents.json index 443cb96d..1bd0372c 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/share_selected.imageset/Contents.json +++ b/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/my_on.imageset/Contents.json @@ -1,12 +1,15 @@ { "images" : [ { - "filename" : "share_selected.svg", + "filename" : "my_on.png", "idiom" : "universal" } ], "info" : { "author" : "xcode", "version" : 1 + }, + "properties" : { + "preserves-vector-representation" : true } } diff --git a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/my-on.imageset/my-on.png b/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/my_on.imageset/my_on.png similarity index 100% rename from ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/my-on.imageset/my-on.png rename to ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/my_on.imageset/my_on.png diff --git a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/share_off.imageset/Contents.json b/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/share_off.imageset/Contents.json deleted file mode 100644 index b34bb4fb..00000000 --- a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/share_off.imageset/Contents.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "images" : [ - { - "filename" : "share_off.svg", - "idiom" : "universal" - } - ], - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/share_off.imageset/share_off.svg b/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/share_off.imageset/share_off.svg deleted file mode 100644 index b7ca28d6..00000000 --- a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/share_off.imageset/share_off.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/share_selected.imageset/share_selected.svg b/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/share_selected.imageset/share_selected.svg deleted file mode 100644 index ac2ef6f5..00000000 --- a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/IconSystem/share_selected.imageset/share_selected.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/QuestTabBar/Contents.json b/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/QuestTabBar/Contents.json deleted file mode 100644 index 73c00596..00000000 --- a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/QuestTabBar/Contents.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/QuestTabBar/my_journey.imageset/Contents.json b/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/QuestTabBar/my_journey.imageset/Contents.json deleted file mode 100644 index 4c09197b..00000000 --- a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/QuestTabBar/my_journey.imageset/Contents.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "images" : [ - { - "filename" : "my_journey_sharp.svg", - "idiom" : "universal", - "scale" : "1x" - }, - { - "idiom" : "universal", - "scale" : "2x" - }, - { - "idiom" : "universal", - "scale" : "3x" - } - ], - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/QuestTabBar/my_journey.imageset/my_journey_sharp.svg b/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/QuestTabBar/my_journey.imageset/my_journey_sharp.svg deleted file mode 100644 index 9d84a147..00000000 --- a/ByeBoo-iOS/ByeBoo-iOS/Resource/Assets.xcassets/QuestTabBar/my_journey.imageset/my_journey_sharp.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - -