7

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: Result produced

But this is what I want: What I want

Andrew
  • 15,357
  • 6
  • 66
  • 101
Mikey A. Leonetti
  • 2,834
  • 3
  • 22
  • 36

0 Answers0