Swift导入微信分享功能

3 阅读1分钟

1.1 安装微信SDK

在Podfile中添加:

pod 'WechatOpenSDK'

然后运行 pod install

1.2 配置URL Scheme

在Info.plist中添加:

<key>CFBundleURLTypes</key>
<array>
    <dict>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>wx你的APPID</string>
        </array>
    </dict>
</array>
<key>LSApplicationQueriesSchemes</key>
<array>
    <string>weixin</string>
    <string>weixinULAPI</string>
</array>

2 桥接问题

创建一个文件header file类型的文件 命名例如 WeChatDemo-Bridging-Header.h 然后导入oc的头文

#import "WXApi.h"
#import "WXApiObject.h"

2.1 Build Settings 中搜索Objective-C Bridging Header 然后$(SRCROOT)/你的项目名/文件路径