Is it possible to mix images and text and send them as MMS? UIActivityViewController
will share an image with text underneath, but no matter how I order the text and images, the images always appear on top and the text on the bottom. If it's not possible with UIActivityViewController
, is there another way?
The code I'm trying to use:
NSArray *activityItems = @[smallImage, @"Love", mediumImage, @"You", largeImage];
NSArray *applicationActivities = nil;
NSArray *excludeActivities = nil;
UIActivityViewController * activityController = [[UIActivityViewController alloc] initWithActivityItems:activityItems applicationActivities:applicationActivities];
activityController.excludedActivityTypes = excludeActivities;
[self presentViewController:activityController animated:YES completion:nil];
It produces this result:
But this is what I want: