iOS友盟分享

作者: Sun_zn | 来源:发表于2016-11-07 00:04 被阅读0次


    我在网上看了很多关于友盟分享的文章,可是都觉得不是很清楚,所以就结合友盟的官方文档自己研究了一下。

    首先,因为懒所以我先试了下文档说的通过Cocoapods集成,但是没有成功,可能要先把下载好的SDK放在跟工程同一级目录然后再pod 'UMengUShare/UI'才有效,但我懒所以这个没有尝试,然后我有试了下pod 'UMengSocialCOM', '~> 5.2.1',这个可以了,但是pod 回来的包有100多M,太大了,因为它里面包含了各个平台的分享,然而我工程只需要用到微信、qq和微博,所以后来用了手动引入,下面说一下。

    手动引入的第一步,上友盟根据自己的需要把SDK下载回来,需要多少个分享平台就选多少个平台,多选一点的话SDK也会大一点,下载回来了把不需要的拖出工程也可以。

    进入分享 苹果SDK 点击下载SDK 不用怕,点击了还不会下载 根据自己的需要下载

    下载完回来会把UMSocial这个文件夹拖进工程里面

    拖进工程

    再配置需要的环境(按照文档来就好了)

    1、在Other Linker Flags加入-ObjC

    在Other Linker Flags加入-ObjC

    2、加入依赖系统库

    加入依赖库 依赖库

    3、配置各平台URL Scheme(首先要去各平台申请一个appKey)

    这一步是在第三方应用授权或分享后,跳转回你的app用的,没有配置的话就跳不回来。

    有3种方式设置

    ①通过工程设置面板

    工程设置面板

    ②通过info.plist文件编辑

    info.plist

    ③直接编辑info.plist中XML代码

    xml

    最后就可以敲代码了

    在AppDelegate.m中设置如下代码

    引入头文件#import <UMSocialCore/UMSocialCore.h>

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

    //打开调试日志

    [[UMSocialManager defaultManager] openLog:YES];

    //设置友盟appkey

    [[UMSocialManager defaultManager] setUmSocialAppkey:@"57b432afe0f55a9832001a0a"];

    // 获取友盟social版本号

    //NSLog(@"UMeng social version: %@", [UMSocialGlobal umSocialSDKVersion]);

    //设置微信的appKey和appSecret

    [[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_WechatSession appKey:@"wxdc1e388c3822c80b" appSecret:@"3baf1193c85774b3fd9d18447d76cab0" redirectURL:@"http://mobile.umeng.com/social"];

    //设置分享到QQ互联的appKey和appSecret

    [[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_QQ appKey:@"100424468"  appSecret:nil redirectURL:@"http://mobile.umeng.com/social"];

    //设置新浪的appKey和appSecret

    [[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_Sina appKey:@"3921700954"  appSecret:@"04b48b094faeb16683c32669824ebdad" redirectURL:@"http://sns.whalecloud.com/sina2/callback"];

    //支付宝的appKey

    [[UMSocialManager defaultManager] setPlaform: UMSocialPlatformType_AlipaySession appKey:@"2015111700822536" appSecret:nil redirectURL:@"http://mobile.umeng.com/social"];

    //设置易信的appKey

    [[UMSocialManager defaultManager] setPlaform: UMSocialPlatformType_YixinSession appKey:@"yx35664bdff4db42c2b7be1e29390c1a06" appSecret:nil redirectURL:@"http://mobile.umeng.com/social"];

    //设置点点虫(原来往)的appKey和appSecret

    [[UMSocialManager defaultManager] setPlaform: UMSocialPlatformType_LaiWangSession appKey:@"8112117817424282305" appSecret:@"9996ed5039e641658de7b83345fee6c9" redirectURL:@"http://mobile.umeng.com/social"];

    //设置领英的appKey和appSecret

    [[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_Linkedin appKey:@"81t5eiem37d2sc"  appSecret:@"7dgUXPLH8kA8WHMV" redirectURL:@"https://api.linkedin.com/v1/people"];

    //设置Twitter的appKey和appSecret

    [[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_Twitter appKey:@"fB5tvRpna1CKK97xZUslbxiet"  appSecret:@"YcbSvseLIwZ4hZg9YmgJPP5uWzd4zr6BpBKGZhf07zzh3oj62K" redirectURL:nil];

    // 如果不想显示平台下的某些类型,可用以下接口设置

    //    [[UMSocialManager defaultManager] removePlatformProviderWithPlatformTypes:@[@(UMSocialPlatformType_WechatFavorite),@(UMSocialPlatformType_YixinTimeLine),@(UMSocialPlatformType_LaiWangTimeLine),@(UMSocialPlatformType_Qzone)]];

    ...

    return YES;

    }

    设置系统回调

    使用

    - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation

    {

    BOOL result = [[UMSocialManager defaultManager] handleOpenURL:url];

    if (!result) {

    // 其他如支付等SDK的回调

    }

    return result;

    }

    - (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url

    {

    BOOL result = [[UMSocialManager defaultManager] handleOpenURL:url];

    if (!result) {

    // 其他如支付等SDK的回调

    }

    return result;

    }

    第三方平台授权

    支持授权的平台

    微信、QQ、新浪微博、腾讯微博、人人网、豆瓣、Facebook、Twitter、Linkedin领英、Kakao

    授权并获取用户信息

    // 在需要进行获取用户信息的UIViewController中加入如下代码

    #import

    - (void)getUserInfoForPlatform:(UMSocialPlatformType)platformType

    {

    [[UMSocialManager defaultManager] getUserInfoWithPlatform:platformType currentViewController:self completion:^(id result, NSError *error) {

    UMSocialUserInfoResponse *userinfo =result;

    NSString *message = [NSString stringWithFormat:@"name: %@\n icon: %@\n gender: %@\n",userinfo.name,userinfo.iconurl,userinfo.gender];

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"UserInfo"

    message:message

    delegate:nil

    cancelButtonTitle:NSLocalizedString(@"确定", nil)

    otherButtonTitles:nil];

    [alert show];

    }];

    }

    最后就是在你需要分享的控制器里面加上下面几句代码

    第三方平台分享

    弹出分享面板(可以自定义)

    #import "UMSocialUIManager.h"

    //点击分享按钮

    - (IBAction)share:(id)sender {

    __weak typeof(self) weakSelf = self;

    //显示分享面板

    [UMSocialUIManager showShareMenuViewInView:nil sharePlatformSelectionBlock:^(UMSocialShareSelectionView *shareSelectionView, NSIndexPath *indexPath, UMSocialPlatformType platformType) {

    [weakSelf disMissShareMenuView];

    [weakSelf shareDataWithPlatform:platformType];

    }];

    }

    设置分享内容(这里才是真正点击了分享要调用的方法)

    分享文本

    - (void)shareTextToPlatformType:(UMSocialPlatformType)platformType

    {

    //创建分享消息对象

    UMSocialMessageObject *messageObject = [UMSocialMessageObject messageObject];

    //设置文本

    messageObject.text = @"社会化组件UShare将各大社交平台接入您的应用,快速武装App。";

    //调用分享接口

    [[UMSocialManager defaultManager] shareToPlatform:platformType messageObject:messageObject currentViewController:self completion:^(id data, NSError *error) {

    if (error) {

    NSLog(@"************Share fail with error %@*********",error);

    }else{

    NSLog(@"response data is %@",data);

    }

    }];

    }

    另外,如果要做iOS9/10系统的适配的话

    http://dev.umeng.com/social/ios/ios9

    按照这个说的去做就可以了,就是把里面的XML格式的代码添加到你的info.plist文件里面就好

    相关文章

      网友评论

        本文标题:iOS友盟分享

        本文链接:https://www.haomeiwen.com/subject/mivnuttx.html