I have a problem if i build my application from Xcode 5 and run the same on a device with iOS 8 i see a crash with a error message
[myViewController numberOfSectionsInTableView:] message sent to deallocated instance 0x1846c960
I have allocated the class as below
@property (strong, nonatomic) MyViewController *myViewController;
myViewController =[[MyViewController alloc]initWithNibName:@"MyViewController" bundle:[NSBundle mainBundle]];
myViewController.userDetailsDict=userDetailsDict;
[self.navController pushViewController:self.myViewController animated:FALSE];
if i build the same application from Xcode 6, then i don't see any issue, it works fine.
Has any one faced an issue of similar kind. Any Help ?