下载 SDK
1.1 登录官网
1.2 点击这里 下载 SDK
1.3 勾选本人须要的平台,例如微信平台,而后本人写 UI,只须要勾选 如下图:
点击保留配置之后,而后点击 下载 即可
导入 SDK
将 1.3 步获取到的 SDK,间接将整个 SDK 资源文件拖进我的项目里,如下图:
并且勾选以下 3 个选项
在点击 Finish,实现导入。
增加依赖库
点击“+”号,并在弹框里输出以下依赖库,进行增加
必要依赖库:
libc++.tbd
libz.tbd
libsqlite3.tbd
配置 -ObjC
在我的项目的 Build Settings 中的 Other Linker Flags 增加”-ObjC”,留神大小写
配置 ATS
在我的项目的 info.plist 中增加 App Transport Security Settings,类型为字典类型给它增加一个 Key:Allow Arbitrary Loads,类型为 Boolean 类型,值为 YES;
配置 URL Scheme
关上我的项目 Info 选项,找到 URL Types,增加微信的 URL Scheme:初始化里的 AppId 就是 URL SCheme,如下图:
配置白名单
在我的项目的 info.plist 中增加 LSApplicationQueriesSchemes,类型为 Array 而后给它增加一个须要反对的我的项目,类型为字符串类型:微信白名单须要减少:wechat,weixin,weixinULAPI 这 3 项,如下图:
留神:XCode13,iOS15 上编译,白名单只读取前 50 个配置,前面配置的都会有效
配置 Universal Link
Universal Link 能够本人去生成,参考苹果官网文档,然而为了不便用户,节俭用户的工夫和精力,咱们也在后盾为客户生成了 Universal Link,如下图:
Team id:开发者团队的 ID,可在苹果开发者后盾查看
Bundle id:开发者账号下所有利用对应一个 Bundle id,可见于我的项目 plist 文件中的 Bundle identifier,务必与我的项目中保持一致
填写好这些信息保留之后,就能够将生成的 Universal Link 用于微信开放平台上,微信初始化里,我的项目里这 3 个中央进行配置
(1)微信里以 https:// 结尾,反斜杠结尾 这种模式填写如下:
(2)微信初始化里与微信开放平台一样模式以 https:// 结尾,反斜杠结尾 模式填写如下:
[platformsRegister setupWeChatWithAppId:@"wx617c77c82218ea2c" appSecret:@"c7253e5289986cf4c4c74d1ccc185fb1" universalLink:@"https://70imc.share2dlink.com/"];
(3)我的项目里以 applinks:XXXX 模式填写如下:增加 Associated Domains(留神:证书必须开明这个性能哦)
而后双击 Associated Domains
增加好点击 + 号,进行 UL 配置,如下:
初始化 SDK
在我的项目默认的 plist 文件里 配置 ShareSDK 的 AppKey 和 AppSecret,键别离为 MOBAppKey 和 MOBAppSecret,值为之前在 MobTech 官网开发者后盾申请的 AppKey 和 AppSecret(留神配置之后保留好,而后看我的项目的 Info 选项里有没有)
初始化微信平台
我的项目启动的时候在 application:didFinishLaunchingWithOptions: 中增加初始化第三方平台的办法
#import <ShareSDK/ShareSDK.h>
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{[ShareSDK registPlatforms:^(SSDKRegister *platformsRegister) {[platformsRegister setupWeChatWithAppId:@"wx617c77c82218ea2c" appSecret:@"c7253e5289986cf4c4c74d1ccc185fb1" universalLink:@"https://70imc.share2dlink.com/"];
}];
return YES;
}
结构分享参数以及调用分享办法
可在本人须要登录的视图页面写一个分享按钮,而后在按钮事件里调用接口,代码如下:
#import <ShareSDK/ShareSDK.h>
#import <ShareSDKUI/ShareSDK+SSUI.h>
- (void)viewDidLoad {[super viewDidLoad];
// Do any additional setup after loading the view.
UIButton * button = [UIButton buttonWithType:UIButtonTypeCustom];
button.frame = CGRectMake(80, 100, 280, 60);
[button setTitle:@"分享" forState:UIControlStateNormal];
[button setBackgroundColor:[UIColor redColor]];
[button addTarget:**self** action:**@selector**(tag) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:button];
}
-(void)tag
{
// 结构分享参数
NSMutableDictionary * params = [NSMutableDictionary dictionary];
[params SSDKSetupShareParamsByText:@"test"
images:@"http://download.sdk.mob.com/web/images/2019/07/30/14/1564468183056/750_750_65.12.png"
url:[NSURL URLWithString:@"http://www.mob.com/"]
title:@"title"
type:SSDKContentTypeWebPage];
// 调用分享办法
[ShareSDK share:SSDKPlatformTypeWechat
parameters:params
onStateChanged:^(SSDKResponseState state, NSDictionary *userData,
SSDKContentEntity *contentEntity, NSError *error) {switch (state) {
case SSDKResponseStateSuccess:
NSLog(@"胜利");// 胜利
break;
case SSDKResponseStateFail:
{NSLog(@"--%@",error.description);
// 失败
break;
}
case SSDKResponseStateCancel:
// 勾销
break;
default:
break;
}
}];
}
受权登录
可在本人须要登录的视图页面写一个登录按钮,而后在按钮事件里调用接口,代码如下:
#import <ShareSDK/ShareSDK.h>
- (void)viewDidLoad {[super viewDidLoad];
// Do any additional setup after loading the view.
UIButton * button = [UIButton buttonWithType:UIButtonTypeCustom];
button.frame = CGRectMake(80, 100, 280, 60);
[button setTitle:@"登录" forState:UIControlStateNormal];
[button setBackgroundColor:[UIColor redColor]];
[button addTarget:self action:@selector(tag) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:button];
}
-(void)tag
{
[ShareSDK authorize:SSDKPlatformTypeWechat
settings:nil
onStateChanged:^(SSDKResponseState state, SSDKUser *user, NSError *error) {switch (state) {
case SSDKResponseStateSuccess:
NSLog(@"%@",[user.credential rawData]);
break;
case SSDKResponseStateFail:
{NSLog(@"--%@",error.description);
// 失败
break;
}
case SSDKResponseStateCancel:
// 用户勾销受权
break;
default:
break;
}
}];
}
}
如此,即可实现微信分享链接以及受权登录性能!