博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS9.0 友盟分享详细过程
阅读量:5113 次
发布时间:2019-06-13

本文共 6293 字,大约阅读时间需要 20 分钟。

一: 申请友盟的AppKey(友盟的Key是根据应用的名称生成的!)

在友盟注册了你自己的开发者账号后就可以申请AppKey了。然后在这个方法里面设置Key

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {       [UMSocialData setAppKey:@"*******************"];      //设置微信AppId、appSecret,分享url      [UMSocialWechatHandler setWXAppId:@"*******" appSecret:@"*******" url:@"http://www.umeng.com/social"];      //设置手机QQ 的AppId,Appkey,和分享URL,需要#import "UMSocialQQHandler.h"      [UMSocialQQHandler setQQWithAppId:@"*******" appKey:@"*******" url:@"http://www.umeng.com/social"];}

这里就没有再设置SSO开关,按下面的步骤写下去也是没有问题的,能满足一般的需求;

二: 下面再通过下面的步骤路径

   target---》 info -----》 URL Types  这个路径去设置自己的 URL Schemes 这里其实简单,可以看看官方的开发文档。

三:分享按钮参考代码

 

//***********************************************************************//============================  友盟分享 // 这里的分享没有设置SSO开关  新浪微博 和 腾讯微博 的客户端就没有发挥相应的作用,以后可以完善!    NSString * FXContentString=[NSString  stringWithFormat:@"%@%@",_storename,store_url];    UIAlertView * ALVIew=[[UIAlertView alloc]initWithTitle:@"提示" message:@"分享成功了" delegate:self cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];    [SGActionView showGridMenuWithTitle:@"更多分享" itemTitles:@[ @"新浪微博", @"腾讯微博", @"微信", @"朋友圈",@"QQ", @"QQ空间", @"我信朋友圈"] images:@[ [UIImage imageNamed:@"分享_09"],                                                                                            [UIImage imageNamed:@"分享_11"],                                                                                            [UIImage imageNamed:@"分享_15"],                                                                                            [UIImage imageNamed:@"分享_05"],                                                                                            [UIImage imageNamed:@"分享_07"],                                                                                            [UIImage imageNamed:@"分享_13"],                                                                                            [UIImage imageNamed:@"分享_03"]                                                                                           ]selectedHandle:^(NSInteger index) {//******************* 新浪微博分享  这里的index相当于你按钮的tag值!!!!!if (index==1) {// 分享店铺名称和LOGO的生成网址[[UMSocialControllerService defaultControllerService] setShareText:FXContentString shareImage:logo.image  socialUIDelegate:self];//设置分享内容和回调对象[UMSocialSnsPlatformManager getSocialPlatformWithName:UMShareToSina].snsClickHandler(self,[UMSocialControllerService defaultControllerService],YES); } //******************** 腾讯微博分享else if (index==2){
[[UMSocialDataService defaultDataService] postSNSWithTypes:@[UMShareToTencent] content:FXContentString image:logo.image location:nil urlResource:nil presentedController:self completion:^(UMSocialResponseEntity *shareResponse){ if (shareResponse.responseCode == UMSResponseCodeSuccess) { [ALVIew show]; NSLog(@"分享成功!"); } }];}//******************* 微信好友分享 else if (index==3){ //当分享消息类型为图文时,点击分享内容会跳转到预设的链接,设置方法如下[UMSocialData defaultData].extConfig.wechatSessionData.url = store_url;[UMSocialData defaultData].extConfig.wechatSessionData.title = _storename;//使用UMShareToWechatSession,UMShareToWechatTimeline,UMShareToWechatFavorite分别代表微信好友、微信朋友圈、微信收藏[[UMSocialDataService defaultDataService] postSNSWithTypes:@[UMShareToWechatSession] content:FXContentString image:logo.image location:nil urlResource:nil presentedController:self completion:^(UMSocialResponseEntity *response){if (response.responseCode == UMSResponseCodeSuccess) { NSLog(@"分享成功!"); } }];}//*************** 微信朋友圈分享else if (index==4){//当分享消息类型为图文时,点击分享内容会跳转到预设的链接,设置方法如下[UMSocialData defaultData].extConfig.wechatTimelineData.url = store_url;[UMSocialData defaultData].extConfig.wechatTimelineData.title = _storename;//使用UMShareToWechatSession,UMShareToWechatTimeline,UMShareToWechatFavorite分别代表微信好友、微信朋友圈、微信收藏[[UMSocialDataService defaultDataService] postSNSWithTypes:@[UMShareToWechatTimeline] content:FXContentString image:logo.image location:nil urlResource:nil presentedController:self completion:^(UMSocialResponseEntity *response){if (response.responseCode == UMSResponseCodeSuccess) { NSLog(@"分享成功!"); } }]; }//**************** QQ 好友分享 else if (index==5){ // QQ 分享到QQ好友设置分享内容点击的URL连接和标题[UMSocialData defaultData].extConfig.qqData.title = _storename;[UMSocialData defaultData].extConfig.qqData.url =store_url;[[UMSocialDataService defaultDataService] postSNSWithTypes:@[UMShareToQQ] content:FXContentString image:logo.image location:nil urlResource:nil presentedController:self completion:^(UMSocialResponseEntity *response){if (response.responseCode == UMSResponseCodeSuccess) { NSLog(@"分享成功!");}}];}//**************** QQ 空间分享else if (index==6){// QQ 分享到QQ空间设置分享内容点击的URL连接和标题[UMSocialData defaultData].extConfig.qzoneData.url = store_url;[UMSocialData defaultData].extConfig.qzoneData.title = _storename;[[UMSocialDataService defaultDataService] postSNSWithTypes:@[UMShareToQzone] content:FXContentString image:logo.image location:nil urlResource:nil presentedController:self completion:^(UMSocialResponseEntity *response){if (response.responseCode == UMSResponseCodeSuccess) { NSLog(@"分享成功!"); } }]; } }//=======================================================//#############友盟分享

 

四:IOS 9.0 系统的问题

把你的info.plist 文档按文档格式打开,(选择文本编辑方式打开即可,鼠标右键)

复制粘贴下面代码

<key>LSApplicationQueriesSchemes</key> <array> <!-- 微信 URL Scheme 白名单--> <string>wechat</string> <string>weixin</string> <!-- 新浪微博 URL Scheme 白名单--> <string>sinaweibohd</string> <string>sinaweibo</string> <string>sinaweibosso</string> <string>weibosdk</string> <string>weibosdk2.5</string> <!-- QQ、Qzone URL Scheme 白名单--> <string>mqqapi</string> <string>mqq</string> <string>mqqOpensdkSSoLogin</string> <string>mqqconnect</string> <string>mqqopensdkdataline</string> <string>mqqopensdkgrouptribeshare</string> <string>mqqopensdkfriend</string> <string>mqqopensdkapi</string> <string>mqqopensdkapiV2</string> <string>mqqopensdkapiV3</string> <string>mqzoneopensdk</string> <string

转载于:https://www.cnblogs.com/zhangxiaoxu/p/4992419.html

你可能感兴趣的文章
在Server上得到数据组装成HTML后导出到Excel。两种方法。
查看>>
浅谈项目需求变更管理
查看>>
经典算法系列一-快速排序
查看>>
设置java web工程中默认访问首页的几种方式
查看>>
ASP.NET MVC 拓展ViewResult实现word文档下载
查看>>
jQuery Mobile笔记
查看>>
8、RDD持久化
查看>>
第二次团队冲刺--2
查看>>
查询数据(后台到前台传递数据,显示数据)
查看>>
集群tomcat+apache配置文档
查看>>
VMware Tools安装
查看>>
2019.04.09 电商20 购物车的展示
查看>>
Linux上架设boost的安装及配置过程
查看>>
[转载]加密算法库Crypto——nodejs中间件系列
查看>>
zoj 2286 Sum of Divisors
查看>>
OO5~7次作业总结
查看>>
如何判断主机是大端还是小端(字节序)
查看>>
Centos7 日志查看工具
查看>>
使用Xshell密钥认证机制远程登录Linux
查看>>
BZOJ2459 : [BeiJing2011]神秘好人
查看>>