WingKit is a library that allows third parties to integrate with the Wing REST API to perform lung function tests.
- iOS 9.0+
- Xcode 9.0+
- Swift 4.0+
CocoaPods is a dependency manager for Cocoa projects. To install it, run this command in your terminal:
$ gem install cocoapods
WingKit requires CocoaPods 1.1+ to build.
To integrate WingKit into your project, specifiy it in your Podfile
:
platform :ios, '11.0'
use_frameworks!
target '<Your Target Name>' do
pod 'WingKit', '0.1.1'
end
- Clone the WingKit repository to your mac.
- Reference the local filepath where you cloned the repo in your Podfile:
platform :ios, '11.0'
use_frameworks!
target '<Your Target Name>' do
pod 'WingKit', :path => '<path/to/repo>'
end
The documentation for WingKit can be found here: https://sparodev.github.io/WingKit/.
Check out the WingKitExample repo for an example of how to integrate with WingKit to perform a lung function test and view the results.