Open
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
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.
화면 별 요구 항목
todoList 화면
todo 생성 화면
todo 상세 화면
선택 구현 항목
학습키워드
고민했던 부분
비동기 호출로 인해 Location 객체를 Class로 정의
geocodeAddressString비동기 @escaping 메서드에서 좌표값을 받아오는데 구조체로 구현시 좌표값을 얻어오지 못했고, Class로 변환 후 올바르게 동작하는 것을 확인할 수 있었습니다.데이터 모델 관리자 객체와 단위 테스트...
테이블 뷰 편집모드
deleteRows메서드를 활용했습니다. 셀이 삭제되는 애니메이션 효과를 넣을 수 있는 장점이 있으나 참조 배열의 데이터 삭제를 먼저 하지 않는다면 인덱스 에러가 발생하였습니다.MKMapView
느낀점