I have an app I need to display only facebook,twitter and email in activityview controller?
everything need exclude.
How can I do that?
any help will be appreciated.
I have an app I need to display only facebook,twitter and email in activityview controller?
everything need exclude.
How can I do that?
any help will be appreciated.
 
    
    To exclude everything:
NSArray *exclude = @[UIActivityTypePostToFacebook,
                     UIActivityTypePostToTwitter,
                     UIActivityTypePostToWeibo,
                     UIActivityTypeMessage,
                     UIActivityTypeMail,
                     UIActivityTypePrint,
                     UIActivityTypeCopyToPasteboard,
                     UIActivityTypeAssignToContact,
                     UIActivityTypeSaveToCameraRoll,
                     UIActivityTypeAddToReadingList,
                     UIActivityTypePostToFlickr,
                     UIActivityTypePostToVimeo,
                     UIActivityTypePostToTencentWeibo,
                     UIActivityTypeAirDrop,
                     UIActivityTypeOpenInIBooks];
activityViewController.excludedActivityTypes = exclude;
Remove Facebook, Twitter and Mail from the list to show them in the action sheet.
