since I updated Xcode to Version 4.5 and started building for iOS 6 log messages like this keep appearing:
ADDRESPONSE - ADDING TO MEMORY ONLY
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.