Mountain lion sharing menu

Similar to the share button that can be created with the NSSharingServicePicker , perhaps there is a share menu as there is in Safari - Image showing Safari's sharing menuin my own application?

+3


source to share


1 answer


A few seconds Googling produces this:

NSArray *sharingServices = [NSSharingService sharingServicesForItems:items];



... then you can go through each of the services and create menu items for them. Taken from this sample code .

+4


source







All Articles