prodeveloper
prodeveloper

Reputation: 950

Using NSURLSessionDataTask with Restkit

I am using Restkit 0.20 in our iOS application. I want to implement ios 7 Background Transfer Service for fetching the data using NSURLSessionDataTask. Can anyone please let me know how to use NSURLSessionDataTask with Restkit with a simple example.

Thanks in advance, prodeveloper

Upvotes: 0

Views: 109

Answers (1)

Wain
Wain

Reputation: 119041

At the time of writing there is an experimental branch looking at using URL sessions but no production support yet.

So, at the moment you would want to keep them apart. Use the session to download the data and then pass that data to a mapping operation.

Upvotes: 1

Related Questions