Skip to content
Feathers service client for iOS
Swift Objective-C Shell Ruby
Find file

README.md

feathers-ios-client

Feathers service client for iOS

Register a service

Typically in your app delegate

[Feathers registerService:@"todos" host:@"http://localhost:3000"];

Use the service in your app

FeathersService *todoService = Feathers.services[@"todos"];

[todoService find:@{@"name" : @"task 1"}
       completion:^(NSArray *results, NSError *error) {        
    NSLog(@"%@", results);
}];
Something went wrong with that request. Please try again.