OctavKit

0.5.1

Swift toolkit for the Octav(https://github.com/builderscon/octav) API
to4iki/OctavKit

What's New

0.5.1

2018-06-16T14:48:47Z
  • FIx response model & update README bfd6393

OctavKit

Carthage compatible

Swift toolkit for the Octav API.

Requirements

  • Swift 4.1 or later
  • iOS 9.0 or later

Installation

  • Insert github "to4iki/OctavKit" to your Cartfile.
  • Run carthage bootstrap --platform iOS.

Usage

// 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 ...

Description

  • Swift Tools
View More Packages from this Author

Dependencies

  • None
Last updated: Sun Mar 17 2024 17:38:57 GMT-0900 (Hawaii-Aleutian Daylight Time)