Use these # statements for NSLog debugger statements so that they DON'T execute on final apps;
#ifdef DEBUG
NSLog(@"Setup popover should display %@", anyObject);
#endif
The %@ displays the name (actually descriptor) of anyObject object. Good for troubleshooting!