We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Installing TransloaditKit can be done in two different ways, CocoaPods or manually.
TransloaditKit
Simply add the following line into your pod file
pod 'Transloadit'
And then run
pod install
This will fully install TransloaditKit and TUSKit dependency
TUSKit
Transloadit
To begin using TransloaditKit you will need to add your API keys to the projects plist
plist
{PROJECT_NAME}.plist
<key>TRANSLOADIT_SECRET</key> <string>SECRET_KEY_HERE</string> <key>TRANSLOADIT_KEY</key> <string>API_KEY_HERE</string>
Then simply import Transloadit into your project where needed
Objective-C
import <TransloaditKit/Transloadit.h>
Swift
import Transloadit