FireStore와 다이어리 iOS App을 연동하며 드는 의문점들과 솔루션 다이어리 데이터 FireStore CRUD 방법 모델 구조 실시간 업데이트하는 법 Timestamp to NSDate 타입변경 1) FireStore에 어떤 모델 구조로 저장해야하는지와 데이터 추가 방법 FireStore Datamodel Collection - 폴더(Users) Document - 문서(Dahae) Data - 문서안의 내용(name, bornDate, address...) Each Individual Data를 만들어줌 name, sender, content of message, timestamp Dictionary와 Json을 사용할 수 있다. 아래와 같이 Diary 모델 구조를 짜보았다. // // Dia..