Created
November 30, 2017 04:22
-
-
Save jazzedge/69be9df7d9583abea890c77636cb01d1 to your computer and use it in GitHub Desktop.
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
| The table shows possible field types, as they appear in CloudKit Dashboard, | |
| and their equivalent CloudKit framework classes. | |
| Field Type | |
| Class | |
| Description | |
| Asset | |
| CKAsset | |
| A large file that is associated with a record but stored separately | |
| Bytes | |
| NSData | |
| A wrapper for byte buffers that is stored with the record | |
| Date/Time | |
| NSDate | |
| A single point in time | |
| Double | |
| NSNumber | |
| A double | |
| Int(64) | |
| NSNumber | |
| An integer | |
| Location | |
| CLLocation | |
| A geographical coordinate and altitude | |
| Reference | |
| CKReference | |
| A relationship from one object to another | |
| String | |
| NSString | |
| An immutable text string | |
| List | |
| NSArray | |
| Arrays of any of the above field types |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment