Requirements

  • iOS 9.0+
  • Xcode 10.1+
  • Swift 4.2+

使用 CocoaPods 安装 MinCloud

Podfile 文件中添加以下代码

  1. platform :ios, '9.0'
  2. use_frameworks!
  3. target 'YOUR_APP_TARGET' do # 替换 YOUR_APP_TARGET 为你的应用名称。
  4. pod 'MinCloud', :git => 'https://github.com/ifanrx/hydrogen-ios-sdk.git'
  5. end

安装 SDK:

  1. pod install

在需要使用 MinCloud 的文件中导入 MinCloud

  1. import MinCloud
  1. @import MinCloud;

初始化 MinCloud

在应用启动时,需要注册知晓云 clientId,即在 APPDelegate 文件中,找到 application:didFinishLaunchingWithOptions 函数,插入下面代码:示例代码

  1. BaaS.register(clientID: "[[client_id]]", serverURLString: "com.example")
  1. [BaaS registerWithClientID:@"[[client_id]]" serverURLString:@"com.example"];

参数说明

名称类型说明
clientIDString应用 ID
serverURLStringString自定义域名

打印调试信息

开启调试信息,将在开发过程输出错误信息。

  1. BaaS.isDebug = true
  1. BaaS.isDebug = YES;