OctavKit

Carthage compatible

用于 Octav API 的 Swift 工具包。

要求

安装

Carthage

用法

// Setup your conference id(required)
OctavKit.setup(conferenceId: "YOUR_CONFERENCE_ID")

// Set locale(option)
OctavKit.setLocale(Locale.current)

// Sessions receives an instance of a type that conforms to Request.
OctavKit.sessions { (value, error) in
    switch (value, error) {
    case (let value?, _):
        print("success: \(value)")
    case (_, let error?):
        print("error: \(error)")
    case (.none, .none):
        fatalError("unreachable")
    }
}

// Sponsors receives an instance of a type that conforms to Request.
OctavKit.sponsors { (value, error) in ...

// Conference receives an instance of a type that conforms to Request.
OctavKit.conference { (value, error) in ...