Skip to content

Instantly share code, notes, and snippets.

@SongJiaqiang
Created December 2, 2016 07:56
Show Gist options
  • Save SongJiaqiang/910678a5f4d96c5d9747419b73bb5fd3 to your computer and use it in GitHub Desktop.
Save SongJiaqiang/910678a5f4d96c5d9747419b73bb5fd3 to your computer and use it in GitHub Desktop.
使用UIActivityViewController分享视频
- (void)shareVideo {
NSString *videoPath = @"xxx/xxx/test.mp4";
NSURL *shareURL = [NSURL fileURLWithPath:videoPath];
NSString *shareMessage = @"Hey! Here is an interesting video. #Tag";
NSArray *shareItems = @[shareMessage, shareURL];
UIActivityViewController *controller = [[UIActivityViewController alloc] initWithActivityItems:shareItems applicationActivities:nil];
[self presentViewController:controller animated:YES completion:nil];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment