Skip to content
This repository has been archived by the owner on Jun 19, 2021. It is now read-only.

tiferrei/UCLKit

Repository files navigation

Welcome to UCLKit


UCLKit CI Status Platform: macOS Mavericks (10+) Platform: iOS 8+ Platform: watchOS 2.1+ Platform: tvOS 9+


UCLKit is a Swift wrapper for the UCL API. I have developed UCLKit so that Swift developers are able to forget about all the networking, JSON parsing, etc. and with one line, request all the data already fully parsed in object properties, and with the correct Data Types, from the simple String and Int to the more proprietary URL and Date.

Main Features

  • 100% native Swift 4.2 framework
  • Fast and native networking
  • Smart error handling

How-To

Authentication

Just create a config instance with the token as initialization value:

let config = TokenConfiguration("12345")

After that, well, use it! :)

UCLKit(config).rooms() { response in
  switch response {
  case .success(let data):
    print("The first room's name is \(data.rooms[0].name)")
  case .failure(let error):
    print("Oops: \(UCLKit(config).parseError(error))")
  }
}

If you need some more help with the framework you can open an issue above, I'll reply as soon as possible. As an example, please have a look at CampusBuddy and APIBuddy.

Author

Tiago Ferreira | Twitter | Website

License

UCLKit Copyright (C) 2017 Tiago Ferreira

Please check the license file embed in this project for more details.