CocoaPods trunk is moving to be read-only. Read more on the blog, there are 13 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Mar 2015 |
Maintained by Mattt, Kevin Harwood.
| Depends on: | |
| AFNetworking | ~> 2.2 |
| MsgPackSerialization | >= 0 |
AFMsgPackSerialization is an AFNetworking 2 extension that provides request and response serializers to automatically encodes and decodes objects to and from the MsgPack format.
// AFHTTPClient Configuration
AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
manager.responseSerializer = [AFMsgPackResponseSerializer serializer];
[manager GET:@"http://example.com/foo.msgpack"
parameters:nil
success:^(NSHTTPURLResponse *response, id responseObject) {
// ...
}
failure:nil];Mattt Thompson
AFMsgPackSerialization is available under the MIT license. See the LICENSE file for more info.