官方链接:http://www.umeng.com/social
嘛,为了做分享,建议多去搞几个如微信、QQ、微博的开发平台账号。把那个啥AppId、AppKey/AppSecret之类的搞到手就行。就是审核多,好麻烦的说,没个几天下不来。
头文件
在x-code中是肯定要创建桥接头文件的,如下之类的,另外的自己找
#import "UMSocial.h"
#import "UMSocialQQHandler.h" //支持QQ
#import "UMSocialWechatHandler.h" //支持微信
#import "UMSocialSinaSSOHandler.h" //支持微博
添加的文件夹
你要分享到那个平台,就要添加对应的文件,友盟官方可以下载如YiXin(易信)、TencentOpenAPI(腾讯)、Wechat(微信)。手动拖和Cocopodes都行
在x-code的target中的building settings里还要记得添加
$(SRCROOT)/“你的工程名”/Bridge-Header.h(桥接头文件的名字,我写的是这个)
x-code的target中的Build Phases里的Link binary with libraries中还要记得添加刚才那些文件夹的底层依赖文件哦,当然用Cocopodes安装的同学已经自动添加了。不知道有那些依赖文件的去友盟官方网站找。
代码相关
1.在AppDelegate中的代码
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool
{
//设置友盟的AppKey,用于标示应用程序
UMSocialData.setAppKey("5779d71f67e58eb2fa001ffe")
//注册QQ和QQ空间的Appkey和AppId,这两个参数是在腾讯开放平台上申请获得的,(需要在腾讯开放平台上注册账号,填写相关信息,个人需上传个人手持身份证正反面照片,公司需上传公司营业执照,审核时间在7个工作日之内),url指的是分享的url,一般填写对应应用在AppStore里的链接或者公司官网,默认为友盟的官方网址
UMSocialQQHandler.setQQWithAppId("100424468", appKey: "5779d71f67e58eb2fa001ffe", url: "http:www.baidu.com")
//注册微信和微信朋友圈的AppKey和AppSecret,这两个参数是在微信开放平台上申请获得的(需要在微信开放平台上注册账号,填写相关信息,无论是个人还是公司,都需要上传对应应用的appIcon,审核时间大概在3~5个工作日内),url同QQ的
UMSocialWechatHandler.setWXAppId("wxd930ea5d5a258f4f", appSecret: "db426a9829e4b49a0dcac7b4162da6b6", url: nil)
//注意:为了配合苹果的审核政策,需要对未安装的客户端进行隐藏,主要针对财大气粗的QQ和微信
UMSocialConfig.hiddenNotInstallPlatforms([UMShareToQQ,UMShareToQzone,UMShareToWechatSession,UMShareToWechatTimeline])
return true
}
配置系统回调,特别是和微信支付或者支付宝支付的时候需要区分
func application(application: UIApplication, handleOpenURL url: NSURL) -> Bool {
return true
}
func application(application: UIApplication, openURL url: NSURL, sourceApplication: String?, annotation: AnyObject) -> Bool
{
//调用回调
UMSocialSnsService.handleOpenURL(url)
return true
}
2.在ViewController中的代码
//坑:实现分享时,特别是自定义分享面板时,需要添加CoreLocation框架
import CoreLocation
class ViewController: UIViewController,UMSocialUIDelegate
{
//屏幕宽度
let screenWidth = UIScreen.mainScreen().bounds.size.width
//屏幕高度
let screenHeight = UIScreen.mainScreen().bounds.size.height
//自定义分享面板
var customView = UIView()
override func viewDidLoad()
{
super.viewDidLoad()
//创建自定义分享面板
self.customView = UIView(frame: CGRectMake(0,screenHeight,screenWidth,200))
self.customView.backgroundColor = UIColor.lightGrayColor()
self.view.addSubview(self.customView)
//新浪
let sinaButton = UIButton(type: UIButtonType.Custom)
sinaButton.frame = CGRectMake(10, 20, 40, 40)
sinaButton.setImage(UIImage(named: "sina"), forState: UIControlState.Normal)
sinaButton.addTarget(self, action: "shareToSina", forControlEvents: UIControlEvents.TouchUpInside)
self.customView.addSubview(sinaButton)
}
@IBAction func customShareStyle(sender: AnyObject)
{
//显示自定义分享面板
UIView.animateWithDuration(0.3) { () -> Void in
self.customView.frame = CGRectMake(0, self.screenHeight - 200, self.screenWidth, 200)
}
}
func shareToSina()
{
//自定义分享面板的时候需要用postCommentWithContent实现评论内容的发布
//参数一:需要分享的平台
//参数二:需要分享的内容
//参数三:需要分享的图片
//参数四:位置,一般不作处理
//参数五:分享资源
//参数六:作用的控制器
//参数七:分享完成之后的回调
let urlResource = UMSocialUrlResource(snsResourceType: UMSocialUrlResourceTypeImage, url: "http://www.baidu.com/img/bdlogo.gif")
UMSocialDataService.defaultDataService().postSNSWithTypes([UMShareToSina], content: "我是一个自定义样式分享", image: nil, location: nil, urlResource: urlResource, presentedController: self) { (shareResponse: UMSocialResponseEntity?) -> Void in
if shareResponse?.responseCode == UMSResponseCodeSuccess {
print("分享成功")
} else {
print("分享失败")
}
}
//在分享的同时隐藏分享面板
UIView.animateWithDuration(0.3) { () -> Void in
self.customView.frame = CGRectMake(0, self.screenHeight, self.screenWidth, 200)
}
}
//点击屏幕隐藏自定义分享面板
override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
UIView.animateWithDuration(0.3) {
self.customView.frame = CGRectMake(0, self.screenHeight, self.screenWidth, 200)
}
}
//默认分享样式
@IBAction func defaultShareStyle(sender: AnyObject) {
/*
//默认快速实现分享
//参数一:作用的控制器对象
//参数二:appKey
//参数三:要分享的文字
//参数四:需要分享的图片
//参数五:准备分享到的第三方平台
//参数六:代理对象
UMSocialSnsService.presentSnsIconSheetView(self, appKey: "5779d71f67e58eb2fa001ffe", shareText: "走过路过千万不要错过", shareImage: nil, shareToSnsNames: [UMShareToWechatTimeline,UMShareToWechatSession,UMShareToQzone,UMShareToQQ,UMShareToSina], delegate: nil)
*/
//默认详细分享
//设置分享标题
UMSocialData.defaultData().extConfig.title = "分享标题"
//设置分享url,以qq举例
UMSocialData.defaultData().extConfig.qqData.url = "http://www.baidu.com"
//设置分享的内容
UMSocialData.defaultData().extConfig.qqData.title = "分享到qq的内容"
UMSocialSnsService.presentSnsIconSheetView(self, appKey: "5779d71f67e58eb2fa001ffe", shareText: "走过路过千万不要错过", shareImage: nil, shareToSnsNames: [UMShareToWechatTimeline,UMShareToWechatSession,UMShareToQzone,UMShareToQQ,UMShareToSina], delegate: self)
}
//实现回调方法,需要遵守协议UMSocialUIDelegate
func didFinishGetUMSocialDataInViewController(response: UMSocialResponseEntity!)->Void
{
if response.responseCode == UMSResponseCodeSuccess
{
print("分享成功")
}else
{
print("分享失败")
}
}
3.白名单
也不知道为啥这么搞,反正要弄。
在info.plist文件上点右键打开菜单,选open as ->source code,在把官方文档中的白名单中你需要的内容拷过来就OK了。
哦,还要记得打开plist中的网络连接哟。
总结
写了这么多,还得结合着友盟官方文档来看,要不然还是抓瞎。记得上官网哦。