Seb Jachec
Seb Jachec

Reputation: 3061

Mountain Lion Share Menu

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

Upvotes: 3

Views: 673

Answers (1)

Joshua Nozzi
Joshua Nozzi

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

Related Questions