Log Messages I didn't asked for in Xcode 4.5 with iOS 6.0 Log Messages I didn't asked for in Xcode 4.5 with iOS 6.0 xcode xcode

Log Messages I didn't asked for in Xcode 4.5 with iOS 6.0


I'm experiencing the same issue, the message is being issued from the CFNetwork framework, this happens both on device and in the iOS simulator. Specifically running strings on CFNetwork shows:

ADDRESPONSE - not adding TO DISK OR MEMORY: %@ADDRESPONSE - ADDING TO MEMORY ONLY: %@

My guess is it is being issued by CFCachedURLResponse method.

An update - with further investigation my problem is caused by the following:

NSURLCache *cache = [[NSURLCache alloc] initWithMemoryCapacity: memoryCapacity diskCapacity: discCapacity diskPath:[SDURLCache defaultCachePath]];[NSURCache setSharedCache:cache];

Where memoryCapacity == 0. Setting this to some realistic value like 10MB stopped the messages from being issued and appeared to retrieve objects from the cache as I would expect.

Unfortunately or otherwise depending on your perspective NSURLRequest etc behaviour changed with iOS 5. NSURLRequestCachePolicy is now acted upon, meaning you will need to check which iOS version your app is running on and adjust your caching behaviour accordingly.


I have same issue as like you. I don't know but I did fixed it by using following formation in viewDidLoad method.

-(void) viewDidLoad{  // First write my code of UI Creation.  // Then I call   [super viewDidLoad]; //add [super viewDidLoad] AFTER implementation, not before.}

This is working well for me, hope this is also work for you.