CloudKit sharing "add people" window

Hello,


How can one skip "sharing summary" window (the one that shows owner and other participants, and that has "Add People" button) and show Add People view right away, when there is only one participant (owner). I see, that Notes do that, but I cannot find a way to achieve it. I am using NSSharingService:

...
NSSharingService *sharingService = [NSSharingService sharingServiceNamed:NSSharingServiceNameCloudSharing];
...
[sharingService performWithItems:itemProviders];

But it always shows summary (participants) view even if there is only 1 owner and I cannot find a way to customize it - skip that view and show Add People view instead. Am I missing anything?