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.
Initialize your Transloadit object. It may be best to define this globally to avoid having to define multiple instances.
Transloadit
Objective-C
Transloadit *transloadit = [[Transloadit alloc] init];
Swift
let transloadit: Transloadit = Transloadit()
Transloadit communicates back via the TransloaditDelegate, so be sure to set the delegate of your Transloadit object
TransloaditDelegate
[transloadit setDelegate:self];
transloadit.delegate = self