-
Re: How to restrict participant control on shared CloudKit CKShare?
PBK Jul 1, 2019 10:19 AM (in response to inreflection7)I believe you can accomplish this with two CKShare records. One contains the photo and it has CKShareParticipantPermissionReadOnly. The other contains the comments and it has CKShareParticipantPermissionReadWrite.
see:
https://developer.apple.com/documentation/cloudkit/ckshare/1640494-publicpermission?language=objc
https://developer.apple.com/documentation/cloudkit/ckshareparticipantpermission?language=objc
-
Re: How to restrict participant control on shared CloudKit CKShare?
inreflection7 Jul 2, 2019 5:52 AM (in response to PBK)Not a bad idea. Does this mean the user has to share two links and participants need to accept two?
-
Re: How to restrict participant control on shared CloudKit CKShare?
PBK Jul 2, 2019 9:59 AM (in response to inreflection7)I am not sure but you might be able to do it with a single share using two records where one is the "parent" of the other. A single share shares the record and its parents (or is it the otherway?). And I don't know if you can have different permissions for a record and its parent.
-
-