-(void)NewButton
{
ApplianceViewController *VC = [[ApplianceViewController alloc] initWithNibName:@"ApplianceViewController" bundle:[NSBundle mainBundle]] ;
NSLog(@"Retain count before pushViewController:%d",VC.retainCount);//prints1
[self.navigationController pushViewController:VC animated:YES];
NSLog(@"Retain count after pushViewController:%d",VC.retainCount);//prints 7
[VC release];
NSLog(@"Retain count after Release:%d",VC.retainCount);// prints 6
}
在我的代码中,保留计数异常增加。我浪费了很多时间。请提供任何帮助。