I have an app that struggles to perform well on iOS 5 running on an iPad 1. It’s crashing with LowMemory warning very regularly.
The app is huge, complicated (..convoluted), uses core data,….
I want to attempt to reduce the peak memory footprint. There are autoreleased objects everywhere that I could go around converting, but that could take me forever.
Will converting the project to ARC automatically convert those autoreleased objects to retain/release when it is compiled with ARC…..and possibly reduce my peak memory footprint?
Thanks
hmm.. I think it will surely bring down your footprint but the effect won’t be too dramatic. The memory footprints depends more upon the design of your code, the way you create your objects and how effectively you use the same object over and over again.. any other ideas anyone.. ?