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

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -