标签:成功 ble style imp article type content art 创建
使用Social.framework十分简单,可以便捷的分享到主流的社交框架。
①导入主头文件
#import <Social/Social.h>
②以新浪微博为例,首先推断服务是否可用,接着创建分享控制器、调用方法,设置文字和图片。利用block回调。
假设没有分享的账号,系统会自己主动弹出对话框要求用户设置,因此不必开发人员考虑。
if (![SLComposeViewController isAvailableForServiceType:SLServiceTypeSinaWeibo]) { NSLog(@"不可用"); } SLComposeViewController *slVc = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeSinaWeibo]; [self presentViewController:slVc animated:YES completion:^{ }]; [slVc setInitialText:@"默认文字"]; [slVc addImage:[UIImage imageNamed:@"pic.png"]]; // 利用block回调 slVc.completionHandler = ^(SLComposeViewControllerResult result){ switch (result) { case SLComposeViewControllerResultDone: NSLog(@"发送成功"); break; case SLComposeViewControllerResultCancelled: NSLog(@"发送失败"); break; } };
(八十六)使用系统自带的分享框架Social.framework
标签:成功 ble style imp article type content art 创建
原文地址:http://www.cnblogs.com/yangykaifa/p/6717802.html