I'm trying to post to Facebook/Twitter with prefilled text by using UIActivityViewController
.
But I am not able to populate 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];
Please help to to solve this issue, Thanks in advance.
Yes i am able to do now. i changed the shareitem array to
Thanks a lot.