iOS开发系列—内存管理

来源:互联网 发布:红蜘蛛多媒体软件 编辑:程序博客网 时间:2024/05/21 03:54

内存管理-黄金法则
The basic rule to apply is everything that increases the reference counter with alloc, [mutable]copy[withZone:] or retain is in charge of the corresponding [auto]release.
如果对一个对象使用了alloc、[mutable]copy、retain,那么你必须使用相应的release或者autorelease。
这方面问题写的人比较多,找了一个非常详细的http://www.cnblogs.com/kenshincui/p/3870325.html

0 0
原创粉丝点击