无论如何都要为从UIActivityViewController
通过此代码调用共享屏幕
-(void)shareLink:(id)sender{
Post *post = [self.linkViewItems objectAtIndex:self.swipedPath.row];
NSMutableString *txt = [[NSMutableString alloc] init];
[txt appendString:[post description]];
[txt appendString:@" "];
[txt appendString:[post href]];
NSString* someText = txt;
NSArray* dataToShare = @[someText]; // ...or whatever pieces of data you want to share.
UIActivityViewController* activityViewController =
[[UIActivityViewController alloc] initWithActivityItems:dataToShare
applicationActivities:nil];
[self presentViewController:activityViewController animated:YES completion:^{}];
}