ios - How do I display list of contributors of my shared CKRecord? -
i shared record user or other user shared record me. present following controllers:
because code:
if let record = record { if #available(ios 10.0, *) { let share = ckshare(rootrecord: record) let controller = uicloudsharingcontroller(share: share, container: cloudassistant.shared.container) self.present(controller, animated: true) } }
will present:
how can achieve it?
Comments
Post a Comment