首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

AutoreleasePool从入门到放弃(9)

AutoreleasePool从入门到放弃(9)

4. AutoreleasePool的未解之谜

        for (NSInteger count = 0; count < 66666666; count++) {
            
            @autoreleasepool {
               
                __autoreleasing UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
                _objc_autoreleasePoolPrint();
            }
        }
    }

使用__autoreleasing字段强制对象入池,通过调试函数也确实能看到对象已经入池,但是AutoreleasePool迭代时内存依旧飙升未起到作用。但是注释掉调试函数后内存便可及时释放,有知道原理的童鞋麻烦告诉我一声为什么&#129301;
返回列表