Created
April 28, 2013 04:45
-
-
Save NikolaKirev/5475920 to your computer and use it in GitHub Desktop.
iOS Activity VC
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (IBAction)sharePressed:(id)sender { | |
if (NSClassFromString(@"UIActivityViewController")) { | |
NSURL *urlStringToShare = _webView.request.URL; | |
NSArray *dataToShare = @[urlStringToShare]; | |
UIActivityViewController *activityVC = [[UIActivityViewController alloc] initWithActivityItems:dataToShare | |
applicationActivities:nil]; | |
[self presentViewController:activityVC animated:YES completion:nil]; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment