I am running my app with the Performance Tool -> Leaks option and it seems to be going well except for two leaks that show up almost right away that I cannot track down. The leaks are both titled "Malloc 128 Bytes" from the "Core Graphics Library". They are both referred back to this line of code in the app delegate:
Code:
tabBarController.selectedViewController = introViewController;
Commenting this line out does not stop the leaks from appearing with the same line reference. This comes immediately after the assignment of the view controllers to the tab bar controller. All view controllers are released after this. Is this something common I am missing? Something perhaps related to the tab bar setup?
I cannot locate a single instance of an "alloc" without a corresponding "release" so I am confused as to how to further troubleshoot this.
- Mike