When I navigate to another view controller with y=this two lines it works ok.
Inventory *obj = [[Inventory alloc] initWithNibName:@"Inventory" bundle:nil];
[self.navigationController pushViewController:obj animated:YES];
But if i write this line [Which we must write]
[obj release];
It gives me bad access error.
Pls help.
Thanks

[obj release];? – Midhun MP Nov 5 '12 at 5:02[obj release]right after thepushViewController, then the object will have a +1retainCount(because thepushViewControllerwill retain it for you) and when you laterpopViewController, it will be appropriately be cleaned up for you. – Rob Nov 5 '12 at 5:05releasecode which is obviously unneeded with ARC, because you'll have a lot less of these routine memory management problems resulting from putting yourreleasestatements in the wrong place. You might, esp given that you're not using ARC, though, use Xcode's static analyzer ("Product" - "Analyze" or shift+command+B), which will highlight many routine memory management problems in your non-ARC code. – Rob Nov 5 '12 at 5:09