My App makes a request through a TTURLRequestModel for a weekly set of images. When app launches for the first time, this request goes through successfully and gets a response back successfully.
When app is closed and relaunched, applicationDidBecomeActive method posts a notification to update the weekly list and makes a request through that same TTURLRequestModel. Only this time, you can see the the request is sent successfully but requestDidFinishLoad never gets called. I have requestDidFailLoadWithError implemented, and tested that the request gets started.
In the view controller, the init method allocates the model and assigns delegates.
photoListData = [[PhotoListDataModel alloc] init];
[[photoListData delegates] addObject:self];
The method that listens for the notification makes the request:
[photoListData cancel];
[photoListData load:TTURLRequestCachePolicyNoCache more:NO];
Any insight on what may be causing this behavior will be helpful! Thanks in advance!