I am developing an iPhone project in which I have included ARC, and when I start my project with tools, so many places it shows 100% leak for ex:
-[self.navigationController pushViewController:secondPage animated:YES]; //100% leak [self loadXML];//100% leak
even if I make the secondPage object null after clicking and in viewDidUnload to resolve the leak problem. How can I solve these leaks? Any help is appreciated in advance. Thanks.
source share