in a method that is accessed three times I want to write something to the log.
NSLog(@\"%@\", [response responseString]);
But there is noth
NSString *responseString = [response responseString]; NSLog(@"%@", responseString);
set a breakpoint on the first line and debug the application to see if its coming in this code in the first place. If it is, hover over responseString and it will tell you whether it is nil or not.