If all I wanted to do with a webserver was to request data and send commands from an iPhone app, all I’d need for that is AFJSONRequestOperation, correct? Why are some people also using JSONKit with AFNetworking? If I use JSONKit then do I still need to use AFNetworking?
Share
You need a JSON parsing library (like JSONKit) if you are deploying to < iOS 5.
AFNetworkingdoes all the networking stuffJSONKitdoes the parsing/encoding of JSON on < iOS 5From AFNetworking git