I am posting here after reading some similar threads, but you know each issue still has his own specific problem, that's why I still need your help.
My app crashes with this stack trace:
[ReviewVC respondsToSelector:]: message sent to deallocated instance
I tracked that on instruments trying to see the relevant code causing the crash:



here is the relevant code for ReviewVC in the didSelectRowAtIndexPath: delegate method:
self.reviewVC = [[[ReviewVC alloc] initWithNibName:@"Review"
bundle:nil] autorelease];
[viewControllerArray addObject:self.reviewVC];
self.appDelegate.splitViewController.delegate = self.reviewVC;
reviewVC is an instance variable and a property, here is it's property declaration:
@property (nonatomic, retain) ReviewVC *reviewVC;
Am I missing something ?
@synthesize'd - Mallocautoreleasecommand and all work fine now, still need some explanation about that if possible :) - Malloc