I am using UIActivityViewController
for social sharing in my app, for iPhone UIActivityViewController
modal is being used like this:
UIActivityViewController *activityController = [[UIActivityViewController alloc] initWithActivityItems:activityItems applicationActivities:nil];
activityController.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentViewController:activityController animated:YES completion:nil];
I need to change the size of the modal that opens up, please help.
I tried:
activityController.preferredContentSize = CGSizeMake(activityController.preferredContentSize.width/4, 250);
But this does not work and the size of the modal remains same. I should be able to specify the size of the modal that opens on my app for iPhones.