i'm developing an iPhone project in which i enabled ARC, and when i run my project with instruments so many places it is showing 100% leak for ex:
-[self.navigationController pushViewController:secondPage animated:YES]; //100% leak
[self loadXML];//100% leak
even if i make secondPage object as nil after pushing and in viewDidUnload the leak docent get resolved. How can i solve these leaks?Any help is appreciated in advance.Thank You.