Reputation: 3061
Similar to the share button that can be created, with NSSharingServicePicker, is it possible to have a share menu, as there is in Safari - in my own application?
Upvotes: 3
Views: 673
Reputation: 61228
A few seconds of Googling produces this:
NSArray *sharingServices = [NSSharingService sharingServicesForItems:items];
... then you can walk through each of the services and build menu items for them. Taken from this code sample.
Upvotes: 4