Our app downloads 4 reasonable sized feeds on load - we'd like to implement a timeout to allow a refresh / retry button to appear and save the user getting stuck mid download.
I've been doing some research and found this post - (How to set timeout interval for RESTKIT Object Manager)
which alooks like it would help solve my issue, i tried to implement the following -
RKObjectManager *objectManager = [RKObjectManager objectManagerWithBaseURL:@"http://..."];
objectManager.client.timeoutInterval = 30.0; // 30 seconds
but the objectmanager.client doesnt seem to be available - can anyone offer any advice?