iOS中的分享(微信好友和朋友圈)原生分享(非第三方)

一、微信分享的准备工作

1.首先在微信开放平台下载下载SDK,直接拖到项目中。
https://open.weixin.qq.com/cgi-bin/showdocument?action=dir_list&t=resource/res_list&verify=1&id=open1419319164&token=&lang=zh_CN

2.在工程Build Phases -> Link Binary With Libraries 链接以下动态库和框架文件

  • SystemConfiguration.framework
  • libz.dylib
  • libsqlite3.0.dylib
  • CoreTelephony.framework
  • libc++.tbd

3.在info.plist中加入LSApplicationQueriesSchemes,type是数组
这数组中新建两个item,type是string,value分别是weixin和we chat

4.选择项目,targets,点击info,点开下面的URL Types,点击加号
在URL Schemes里微信的appid。

二、微信分享的代码实现。

1.可以使用WXApi.h中的isWxAppInstalled方法来判断当前机器是否安装了微信,从而做出相应操作。

2.初始化微信API
建议在AppDelegate此方法中注册,导入import "WXApi.h"。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  [WXApi registerApp:@"wx1234567890"];//此为申请下来的key一般以wx开头
  return YES;
}

3.在有分享功能的控制器里。
(1)在头文件中导入#import "WXApi.h"
(2)点击分享按钮后的代码

   WXMediaMessage *message = [WXMediaMessage message];
    message.title = @"分享标题";
    message.description = @"分享描述";
    [message setThumbImage:[UIImage imageNamed:@"wx"]];
    
    WXWebpageObject *webpageObject = [WXWebpageObject object];
    webpageObject.webpageUrl = @"https://open.weixin.qq.com";
    message.mediaObject = webpageObject;
    
    SendMessageToWXReq *req = [[SendMessageToWXReq alloc] init];
    req.bText = NO;
    req.message = message;
    // 微信好友
    req.scene = WXSceneSession;
    // 微信朋友圈
    // req.scene = WXSceneTimeline;

三、微信分享成功后的回调
1.让AppDelegate类遵守WXApiDelegate协议
2.从微信端打开第三方APP会调用此方法

- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url
{
    return  [WXApi handleOpenURL:url delegate:self];
}

3.上诉方法在调用代理的onResp方法

- (void)onResp:(BaseResp *)resp {

 if ([resp isKindOfClass:[SendMessageToWXResp class]]){ //失败
        
        if (resp.errCode == 0) {
            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil
                                                            message:@"分享成功"
                                                           delegate:nil
                                                  cancelButtonTitle:NSLocalizedString(@"确定", nil)
                                                  otherButtonTitles:nil];
            [alert show];
        }else{
            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil
                                                            message:@"分享失败"
                                                           delegate:nil
                                                  cancelButtonTitle:NSLocalizedString(@"确定", nil)
                                                  otherButtonTitles:nil];
            [alert show];
        }

}

4.可以根据返回的errCode值(错误码)来做相应的处理

enum  WXErrCode {
    WXSuccess           = 0,    /**< 成功    */
    WXErrCodeCommon     = -1,   /**< 普通错误类型    */
    WXErrCodeUserCancel = -2,   /**< 用户点击取消并返回    */
    WXErrCodeSentFail   = -3,   /**< 发送失败    */
    WXErrCodeAuthDeny   = -4,   /**< 授权失败    */
    WXErrCodeUnsupport  = -5,   /**< 微信不支持    */
};

你可能感兴趣的:(iOS中的分享(微信好友和朋友圈)原生分享(非第三方))