Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 클린 코드
- 리팩토링
- uitableview
- Clean Code
- 리펙토링
- Refactoring
- 스위프트
- Protocol
- MVVM
- ribs
- 애니메이션
- collectionview
- 리펙터링
- swiftUI
- RxCocoa
- SWIFT
- tableView
- UICollectionView
- Observable
- Human interface guide
- ios
- clean architecture
- Xcode
- swift documentation
- combine
- UITextView
- uiscrollview
- rxswift
- HIG
- map
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] 2. iCloud, CloudKit 사용 방법 - CloudKit Console 세팅 본문
iOS 응용 (swift)
[iOS - swift] 2. iCloud, CloudKit 사용 방법 - CloudKit Console 세팅
jake-kim 2021. 12. 25. 19:28
1. iCloud, CloudKit 사용 방법 - Xcode, Profiles 세팅
2. iCloud, CloudKit 사용 방법 - CloudKit Console 세팅
3. iCloud, CloudKit 사용 방법 - CloudKit 연동 (불러오기, 생성, 삭제, 업데이트)
* 주의: iCloud, CloudKit 사용 방법 - Xcode, Profiles 세팅의 예제 코드에서 Bundle Identifier가 com.jake.ExiCloud에이었지만, 아래부터 com.jake.ExiCloud으로 변경
Console 접속, Container 선택
- CloudKit Console 클릭
- CloudKit DataBase 선택
- Container 선택 - cloud.{bundle Identifier}
- Record Types -> + 버튼 클릭
- 이름은 Todo, 4가지 Field 생성
- checked: 사용자가 체크했는지 기록, Int(64) 타입
- createdAt: 만들어진 날짜 기록, Date/Time 타입
- modifiedAt: 수정 날짜 기록, Date/Time 타입
- title: 타이틀, String 타입
- 각 Record에 해당하는 Indexes 설정 (Sortable, Searchable Queryable 옵션을 부여)
- 인덱싱 옵션 부여
- recordName을 Queryable 타입으로 정의 (아이클라우드 콘솔에서 쿼리를 할 수 있는데, 이때 쿼리가 되는 값 지정)
- createdAt을 Sortable 타입으로 정의 (테이블 쿼리 시 순서의 기준이 되는 값)
- Test 데이터 생성 - Records 탭 -> + 버튼 클릭 -> Create New Record 선택
- 아래처럼 데이터 추가
- Query Records를 클릭할 경우 만들어진 Record 확인 가능
* 참고
'iOS 응용 (swift)' 카테고리의 다른 글
Comments