The app I'm writing will let people store several photos, and associate them with a single object.
I thought I would use CloudKit, to store these images, as CKAssets.
In CloudKit, besides the other property-list types, I can create a CKAsset, and attach a file to it (in my case, a JPEG). I can also attach an NSArray of any of these types, including a CKAsset.
My users might send up 5 images per object, or it may be 30... who knows.
Just wondering if someone has come across a situation like this, and seen drawbacks to this approach. (vs, say, creating separate CKRecords for each image, and adding a reference to another CKRecord, for instance).