I wrote a OSX App using ARC, just load a tableview without any cells,the memory is up to 50M+,
I want to know any way to optimize it.
(Can not use release , I can not find any other way)
================================= UPDATE========================================
I created a demo Application , just a blank window, the memory is up to 40M+, sigh
There shouldn’t actually be a difference between using ARC or not–think of ARC as adding
releasecalls for you automatically. This answer has an illustration of this point.