OStack程序员社区-中国程序员成长平台

标题: ios - 为什么要设置为 nil 并释放 UIViewController 的属性? [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 16:11
标题: ios - 为什么要设置为 nil 并释放 UIViewController 的属性?

Apple 文档中有一些我没有得到的东西。这是 UIViewController 类的 -(void)viewDidUnload 的摘录:

your dealloc method should release each object but should also set the reference to that object to nil before calling super.

如果您在代码中对 xxx 属性使用保留和合成,为什么大多数 Apple 示例在 viewDidUnload 中设置为零:

self.xxx = nil;

但建议在 dealloc 中同时设置为零和释放:

[xxx release];
self.xxx = nil;

为什么对于 dealloc 设置为零还不够?

ps : 我知道我的问题和这个 "Why release a property that you've already set to nil?" 非常相似但不完全一样



Best Answer-推荐答案


[xxx release];
self.xxx = nil;

这是错误的,因为 xxx 会被释放两次,推荐的方式是释放 iVar 并将其设置为 nil,而不是使用属性:

[xxx release];
xxx = nil;

不只是使用的原因

self.xxx = nil;

是调用setter方法可能有一些副作用,可能会导致dealloc方法出现问题(即使用其他可能已经被释放的iVar)

关于ios - 为什么要设置为 nil 并释放 UIViewController 的属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5731560/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4