I am building a CloudKit app that uses UICloudSharingController
to create and manage the shared content. iOS 15 seems to have removed the "Add People" option from the dialog when using the controller to view an existing share.
I've tested on iOS 14.5, and the "App People" option is there and works fine. The same code on iOS 15 shows the UICloudSharingController
but the "Add People" option is not there.
I'm showing the controller using this code:
let controller = UICloudSharingController(share: share, container: self.container)
controller.delegate = self
self.present(controller, animated: true)
The CKShare
is properly created and saved. The dialog shows the users that were added during the initial creation of the share.
I reported this (FB9495523) during the original iOS 15 betas, but have heard nothing. I've tested on iOS 15 beta 1 and beta 2, both with the same issue.
Has anyone else seen this? And if so, any suggestions on how to work around it? My users are not happy.
(I realize that I probably can create my own sharing UI to work around this, but I don't want to have to do that!).