-
Notifications
You must be signed in to change notification settings - Fork 0
[IDLE-000] 요양보호사는 공고상세 화면을 확인하고 관심이 있는 공고를 iOS에서 즐겨찾기 및 확인을 할 수 있다. #44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
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
요양보호사 메인화면에 표시되는 Cell은 해당 오브젝트를 통해 내용이 보여지게됩니다.
실패시 화면을 탈출합니다.
실패시 화면을 탈출합니다.
마커, 오버레이, 줌레벨, 제스처 금지 옵션을 설정했습니다.
페이징 작업을 완료한 이후 해당 작업을 이어나갈 예정입니다.
지원한 공고, 즐겨찾기한 공고에 사용됩니다.
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.
변경된점
관심있는 공고확인
요양보호사는 총 2가지 탭에서 공고를 확인할 수 있습니다. 두번째 탭에서는 즐겨찾기및 지원한 공고를 확인할 수 있습니다.
두 탭(즐겨찾기, 지원)의 성질이 같다고 판단하여 동일한 ViewController를 사용하고, ViewModel을 코디네이터에서 주입하는 방식으로 구현하였습니다.
두탭은 모두 View로 WorkerStaticPostBoardVC를 사용합니다.

ViewModel은 WorkerStaticPostBoardVMable프로토콜로 선언되어 있습니다.
두탭의 화면이 유사하지만, 탭에 속한 공고Cell들이 표시해야하는 정보는 달라질 수 있습니다. 따라서 CardCell에 주입하는 ViewModel은 각각 구현하였습니다. d91b0af, 7631851