In my iOS app, I created a custom zone and then fetched the zone by CKFetchRecordOperation. After that, I let the console print the value of the property "capabilities" of the fetched CKRecordZone. The value is 7. How can it be that?
According to the documentation, the value is of the enum type CKRecordZoneCapabilities, which has only the value 1 << 0 and the value 1 << 1. So, I don't know why the value can be 7.
According to the iOS 10 SDK source (CKRecordZone.h) the capabilities are as follows:
So a value of '7' seems to be quite ok (1 + 2 + 4). Your zone has got all available capabilities.