Latest | 0.0.4 |
---|---|
Homepage | https://github.com/aceontech/AFKissXMLRequestOperation |
License | MIT |
Platforms | ios 6.0, osx 10.9, requires ARC |
Dependencies | AFNetworking, KissXML |
Authors |
AFKissXMLRequestOperation
AFKissXMLRequestOperation is an extension for AFNetworking that provides an interface to parse XML using KissXML
Example Usage
AFKissXMLRequestOperation *operation = [AFKissXMLRequestOperation XMLDocumentRequestOperationWithRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://legalindexes.indoff.com/sitemap.xml"]] success:^(NSURLRequest *request, NSHTTPURLResponse *response, DDXMLDocument *XMLDocument) {
NSLog(@"XMLDocument: %@", XMLDocument);
} failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, DDXMLDocument *XMLDocument) {
NSLog(@"Failure!");
}];
[operation start];
Contact
Mattt Thompson
License
AFKissXMLRequestOperation is available under the MIT license. See the LICENSE file for more info.
Latest podspec
{ "name": "[email protected]", "version": "0.0.4", "homepage": "https://github.com/aceontech/AFKissXMLRequestOperation", "authors": { "Mattt Thompson": "[email protected]" }, "license": "MIT", "summary": "An extension for AFNetworking 2.x that provides an interface to parse XML using KissXML.", "source": { "git": "https://github.com/aceontech/AFKissXMLRequestOperation.git", "tag": "0.0.4" }, "source_files": [ "AFKissXMLRequestOperation.{h,m}", "AFKissXMLResponseSerializer.{h,m}" ], "dependencies": { "AFNetworking": [ "~> 2" ], "KissXML": [ "~> 5.0" ] }, "xcconfig": { "HEADER_SEARCH_PATHS": "$(SDKROOT)/usr/include/libxml2" }, "platforms": { "ios": "6.0", "osx": "10.9" }, "requires_arc": true }
Tue, 01 Mar 2016 01:50:03 +0000