Is there a way to get the user submitted comments upon posting to facebook / twitter when using SLComposeViewController
?
It seems the completion handler only allows access to the completion statuses 'SLComposeViewControllerResultDone
' or 'SLComposeViewControllerResultCancelled
'.
Here is an example snippet of how my code is looking right now:
SLComposeViewController *tweetSheet = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeTwitter];
[tweetSheet setInitialText:@"A test tweet."];
[tweetSheet setCompletionHandler:^(SLComposeViewControllerResult result) {
//------ get user submitted comments here somehow? ------
}];
[shareViewController presentViewController:tweetSheet animated:YES completion:^{
[self dismiss];
}];