Below this code I am sharing 1 text and 2 photos using the UIActivityViewController. Then I select Facebook for my sharing destination, and it is divided into 2 divided posts in the feed for each photo, but I want to share it in one message with 1 text and 2 photos. How can i achieve this? I did a lot of searching here and did not find the right answer. It seems to me that Facebook has no clear way to do this, so it seems that such a problem could lie on their side.
activityItems = @[self.textDetail.text, self.imageFileView1.image, self.imageFileView2.image]; UIActivityViewController *activityController = [[UIActivityViewController alloc] initWithActivityItems:activityItems applicationActivities:nil];
source share