Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在状态栏上添加按钮时出现内存泄漏,当我尝试释放泄漏对象时,按钮不会显示在状态栏上。
http://screencast.com/t/d20XBvYBcgu 以上是我的项目泄漏截图
创建对象时启用自动释放
UIWindow *overlapview = [[UIWindow new]autorelrease];
您拥有以“init”、“new”、“copy”、“mutalbelCopy”开头的函数返回的对象,并且您负责释放您拥有的对象。
在您的情况下,您拥有对象“overlapview”并且它没有被释放。这是一个泄漏。