TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | BSD |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
ObjectiveC Wrapper For Tesla APIs
in ViewDidLoad (or wherever you want to use it)
TeslaApi *tApi = [[TeslaApi alloc]initWithUserName:@"YOUREMAIL" andPassword:@"YOURPASSWORD"];
[tApi listVehiclesWithCompletionBlock:^(NSArray *vehicles) {
NSLog(@"VEHICLE: %@",vehicles);
} andErrorBlock:^(NSError *error) {
NSLog(@"ERROR: %@",error);
}];
Download the example project for exact usage