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:

enter image description here enter image description here

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:

enter image description here

how can achieve it?


Comments