1.1. 集成业务包
1.1.1. 使用 CocoaPods 集成
在 Podfile
文件中添加以下内容:
source "https://github.com/TuyaInc/TYPublicSpecs.git"
source 'https://cdn.cocoapods.org/'
platform :ios, '9.0'
target 'your_target_name' do
pod "TuyaSmartPanelSDK"
# 若需要扫地机功能,请依赖扫地机相关插件
pod "TuyaRNApi/Sweeper"
end
然后在项目根目录下执行 pod update
命令,集成第三方库。
CocoaPods 的使用请参考:CocoaPods Guides
1.1.2. 初始化 SDK
- 打开项目设置,Target => General,修改
Bundle Identifier
为涂鸦开发者平台对应的 iOS 包名 - 将准备工作中下载的安全图片导入到工程根目录,重命名为
t_s.bmp
,并加入「项目设置 => Target => Build Phases => Copy Bundle Resources」中。 - 在项目的
PrefixHeader.pch
文件添加以下内容:
#import <TuyaSmartBaseKit/TuyaSmartBaseKit.h>
#import <TuyaSmartPanelSDK/TuyaSmartPanelSDK.h>
Swift 项目可以添加在 xxx_Bridging-Header.h
桥接文件中添加以下内容
#import <TuyaSmartBaseKit/TuyaSmartBaseKit.h>
#import <TuyaSmartPanelSDK/TuyaSmartPanelSDK.h>
- 打开
AppDelegate.m
文件,在[AppDelegate application:didFinishLaunchingWithOptions:]
方法中初始化SDK:
接口说明
初始化 SDK
- (void)startWithAppKey:(NSString *)appKey secretKey:(NSString *)secretKey;
参数说明
参数 | 说明 |
---|---|
appKey | App key |
secretKey | App 密钥key |
示例代码
Objc:
[[TuyaSmartSDK sharedInstance] startWithAppKey:<#your_app_key#> secretKey:<#your_secret_key#>];
Swift:
TuyaSmartSDK.sharedInstance()?.start(withAppKey: <#your_app_key#>, secretKey: <#your_secret_key#>)
至此,准备工作已经全部完毕,可以开始 App 开发啦。