hi...
my code is like this
- (id)getViewControllerForManagedObject:(QIManagedObject *)object {
DataTableViewControllerReports *nextControllerReports = [[[DataTableViewControllerReports alloc] initWithNibName:@"ReportsScreenXIB" bundle:nil] autorelease];
nextControllerReports.objectStack = [self.objectStack arrayByAddingObject:object];
return nextControllerReports;}
I am returning the auto release object to function declared in parent class. but at this point m app crashes. I ran the application in debug mode and i found that after returning from this function it shows "Objc_Msgsend". Means the nextcontrollerReports object is getting released. So any one can help me to pass this object to other function.
Thanks in advance.