I am trying to use UIActivityViewController to share on facebook. When I am using the
UIImage* image = [UIImage imageNamed:@\"image1.png\"];
NSArray* dataT
Try this: if you want only facebook icon to share:
-(IBAction)shareButtonPressed:(id)sender { NSLog(@"shareButton pressed");
NSString *texttoshare = _txt;
UIImage *imagetoshare = _img;
NSArray *activityItems = @[texttoshare, imagetoshare];
UIActivityViewController *activityVC = [[UIActivityViewController alloc] initWithActivityItems:activityItems applicationActivities:nil];
activityVC.excludedActivityTypes = @[UIActivityTypeAssignToContact, UIActivityTypePrint, UIActivityTypePostToTwitter, UIActivityTypePostToWeibo];
[self presentViewController:activityVC animated:TRUE completion:nil];
}
//in the list of excluded activity type insert any other kind of activitytypes you want to exclude
you must be logged in your iphone settings: Settings -> facebook