Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. NSString *textToShare = @"Look at this awesome website for aspiring iOS Developers!";
  2. NSString *text = @"How to add Facebook and Twitter sharing to an iOS app";
  3. NSURL *url = [NSURL URLWithString:@"http://roadfiresoftware.com/2014/02/how-to-add-facebook-and-twitter-sharing-to-an-ios-app/"];
  4. UIImage *image = [UIImage imageNamed:@"roadfire-icon-square-200"];
  5.  
  6. UIActivityViewController *controller =
  7. [[UIActivityViewController alloc]
  8. initWithActivityItems:@[text, url, image]
  9. applicationActivities:nil];
  10.  
  11. [self presentViewController:controller animated:YES completion:nil];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement