Getting objc_msg send exception while release navigation controller and view controller in presentmo

Posted by Rani on Stack Overflow See other posts from Stack Overflow or by Rani
Published on 2010-03-25T12:07:47Z Indexed on 2010/03/25 12:13 UTC
Read the original article Hit count: 357

Filed under:

Hi Guys,

I'm getting exception in dealloc when I release navcontroller and viewcontroller of presentmodelviewcontrolelr the code that i wrote

    MasterViewController*  viewController  = [[MasterViewController alloc] init];

viewController.pathIsFrom = @"Home";
isBookMark=YES;
viewController.isBookmark=isBookMark;
UINavigationController *itemNavController = [[UINavigationController alloc] initWithRootViewController:viewController];
itemNavController.navigationBar.barStyle= UIBarStyleBlackOpaque;

[self.navigationController presentModalViewController:itemNavController animated:YES];
[itemNavController release];
[viewController release];

can anyone help me.

Thanks In advance.

© Stack Overflow or respective owner

Related posts about objective-c