"Assign contact" in UIActivityViewController doesn't work ...!

I need to refresh the picture of a contact with UIActivityViewContrller

But when the action menu appears, it will go directly to the contact details screen, it does not give the option to refresh the picture. This is how I implemented:

UIImage *image = [UIImage imageNamed:@"myPic.png"];
self.activityViewController = [[UIActivityViewController alloc] initWithActivityItems:@[image] applicationActivities:nil];
[self presentViewController:self.activityViewController animated:YES completion:nil];

      

any idea ..?

+3


source to share


1 answer


Take a look at this great link from NSHipster.

http://nshipster.com/uiactivityviewcontroller/



This gives you a deep dive into the UIActivityViewController.

0


source







All Articles