6

I am using UIActivity in ios7. It is working fine with a few lines of code. Now i want to add instagram share button to it. Is there a way to add custom buttons to the action sheet?

This is how i am creating the UIActivityViewController:

NSString *textToShare = self.navigationItem.title;    
NSArray *itemsToShare = @[textToShare, [imagesArray objectAtIndex:afImgViewer.currentImage]];
UIActivityViewController *activityVC = [[UIActivityViewController alloc] initWithActivityItems:itemsToShare applicationActivities:nil];
activityVC.excludedActivityTypes = @[UIActivityTypePrint, UIActivityTypeCopyToPasteboard,    UIActivityTypeAssignToContact]; //or whichever you don't need
[self presentViewController:activityVC animated:YES completion:nil];
rmaddy
  • 314,917
  • 42
  • 532
  • 579
devdev101
  • 241
  • 1
  • 5
  • 14

1 Answers1

16

Well you have to create your own custom UIActivity, in your case for Instagram.

Have a look at this, even if the question is about on how to do it on iOS 6, the solution is exactly the same on iOS 7.

You can also have a look at this project on github, basically is a collection of custom UIActivity for the most common services Instagram included.

Community
  • 1
  • 1
oiledCode
  • 8,589
  • 6
  • 43
  • 59