I have extra retain counts after calling initWithNib. What could cause this? (There are no referencing outlets in the nib)
StepViewController *stepViewController = [[StepViewController alloc] initWithNibName:@"StepViewController" bundle:nil];
[self.navigationController pushViewController:stepViewController animated:YES];
[stepViewController release];
NSLog(@"nextStep stepViewController retain count %i", [stepViewController retainCount]);
the above results in a retain count of 3...
Thanks for any advice on how to troubleshoot