Conversation
dev-domo
approved these changes
Dec 5, 2025
| protocol IsValidQuestAnswerUseCase { | ||
| func execute(previousText: String, changingText: String) -> Bool | ||
| func executeWhenQuestionType(previousText: String, changingText: String) -> Bool | ||
| func executeWhenActiceType(previousText: String, changingText: String, imgCount: Int) -> Bool |
Collaborator
There was a problem hiding this comment.
파라미터가 서로 다르니까 두 메서드 다 execute로 해도 나쁘지 않을듯? 개인 취향인 것 같습니당
| import Combine | ||
| import UIKit | ||
|
|
||
| enum ArchiveViewControllerEntryPoint { |
| changingText: changingText, | ||
| imgCount: imgCount | ||
| ) | ||
| isValidTextSubject.send(isValidText) |
juri123123
approved these changes
Dec 5, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🔗 연결된 이슈
📄 작업 내용
💻 주요 코드 설명
아카이브 뷰컨트롤러 진입점 구분
수정하기 기능을 추가하면서 수정 완료 후 푸시된 아카이브에서 close를 하면 pop할 때 다시 수정뷰컨트롤러로 돌아가는 문제가 있었습니다. 그래서 아예 루트를 퀘스트메인으로 바꾸는 코드를 썼었는데 이게 이번 QA에서 마이페이지에서 진입 시 퀘스트메인으로 가는 오류가 잡혔더라구요. 그래서 진입점을 구분해서 분기처리를 해줬습니다.
행동형 퀘스트 수정