Ios6.0 one-click Sharing to Sina Weibo, Facebook, Twitter, and save and print

Source: Internet
Author: User


1. Add the class library file # import <social/social. h>

2. Click Sina Weibo to trigger the event

- (IBAction)shareToWeibo:(id)sender {    [slComposerSheet setCompletionHandler:^(SLComposeViewControllerResult result) {        NSLog(@"start completion block");        NSString *output;        switch (result) {            case SLComposeViewControllerResultCancelled:                output = @"Action Cancelled";                break;            case SLComposeViewControllerResultDone:                output = @"Post Successfull";                break;            default:                break;        }        if (result != SLComposeViewControllerResultCancelled)        {            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Weibo Message" message:output delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];            [alert show];        }    }];        if([SLComposeViewController isAvailableForServiceType:SLServiceTypeSinaWeibo])    {        slComposerSheet = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeSinaWeibo];        [slComposerSheet setInitialText:self.sharingText];        [slComposerSheet addImage:self.sharingImage];        [slComposerSheet addURL:[NSURL URLWithString:@"http://www.weibo.com/"]];        [self presentViewController:slComposerSheet animated:YES completion:nil];    }       }

3. Click Twitter.

- (IBAction)shareToTwitter:(id)sender {    [slComposerSheet setCompletionHandler:^(SLComposeViewControllerResult result) {        NSLog(@"start completion block");        NSString *output;        switch (result) {            case SLComposeViewControllerResultCancelled:                output = @"Action Cancelled";                break;            case SLComposeViewControllerResultDone:                output = @"Post Successfull";                break;            default:                break;        }        if (result != SLComposeViewControllerResultCancelled)        {            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Twitter Message" message:output delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];            [alert show];        }    }];        if([SLComposeViewController isAvailableForServiceType:SLServiceTypeTwitter])    {        slComposerSheet = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeTwitter];        [slComposerSheet setInitialText:self.sharingText];        [slComposerSheet addImage:self.sharingImage];        [slComposerSheet addURL:[NSURL URLWithString:@"http://www.twitter.com/"]];        [self presentViewController:slComposerSheet animated:YES completion:nil];    }}

Similar to Facebook, you only need to change enumeration.

4. Too many shares

- (IBAction)shareByActivity:(id)sender {    NSArray *activityItems;        if (self.sharingImage != nil) {        activityItems = @[self.sharingText, self.sharingImage];    } else {        activityItems = @[self.sharingText];    }        UIActivityViewController *activityController =    [[UIActivityViewController alloc] initWithActivityItems:activityItems                                      applicationActivities:nil];        [self presentViewController:activityController                       animated:YES completion:nil];}

Demo: https://github.com/russj/ios6ShareDemo

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.