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 -

Python Tornado package error when running server -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -