I am trying to post on Facebook / Twitter with pre-filled text using UIActivityViewController. But I can’t fill in the pre-filled text, below is my sample code.
UIImage* shareImage = [self saveVersionGraphicsAndThumbnailImage:self.drawingView];
NSString* message = @"My post - ";
NSArray* shareItems = @[message, shareImage];
UIActivityViewController * avc = [[UIActivityViewController alloc] initWithActivityItems:shareItems applicationActivities:nil];
if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"8.0")) {
UIPopoverPresentationController *presentationController = [avc popoverPresentationController];
presentationController.sourceView = sender;
}
[self presentViewController:avc animated:YES completion:nil];
Help solve this problem, thanks in advance.
source
share