Safari
Safari

Reputation: 11935

AFNetworking and ways to map the objects

I have a question about AFNetworking objects mapping.

I need to use AFNetworking for JSON Rest API. I haven't experience with it, I used RestKit.

My question is: AFNetworking produces always NSDictionary as response type? In this way, I can make the mapping from NSDictionary response to my properties objects...but, are there other better ways for this?

Upvotes: 0

Views: 2087

Answers (1)

bhargavg
bhargavg

Reputation: 1379

You can look at Overcoat. It couples Mantle with AFNetworking to do the Response serialization.

Upvotes: 3

Related Questions