MyAppDelegate is doing some background stuff and needs to refresh several views during this time, so I am saving a reference to each controller that gets created.
@interface MyAppDelegate : NSObject <UIApplicationDelegate> {
SomethingController *currentSomethingController;
}
@property (nonatomic, retain) SomethingController *currentSomethingController;
This is done to open the controller:
- (void)openSomethingController {
MyAppDelegate * app = [[UIApplication sharedApplication] delegate];
app.currentSomethingController = [[SomethingController alloc] init];
[self presentModalViewController:app.currentSomethingController animated:NO];
}
And this is called inside the controller to close it:
- (void)dismissSelf
{
MyAppDelegate * app = [[UIApplication sharedApplication] delegate];
[app.currentSomethingController release];
app.currentSomethingController = nil;
[self dismissModalViewControllerAnimated:NO];
}
In MyAppDelegate the controllers is sending messages to the controller:
- (void)longRunningBackgroundTask {
[currentSomethingController performSelectorOnMainThread:@selector(updateData) withObject:nil waitUntilDone:YES];
}
If I do Product->Analyse I get "potential leak" and "incorrect decrement" warnings. What would be the right way to do this or assuming my approach is okay, how do I tell the analysis tool to ignore those lines?