为什么在分配保留属性时不应该释放?

发布于 2024-09-06 12:56:59 字数 679 浏览 5 评论 0原文

这个问题与这个问题相关,但更简单。 [我想我可能已经接近结束这些愚蠢的问题了,可以开始讨论严肃的事情了:)]。

我有一个 retain 属性并像这样设置它:

UINavigationController *thing = [[UINavigationController alloc] initWithRootViewController:one];
    // thing's retain count is one
navController = thing;
    // thing's retain count is still one!
[thing release];
    // now retain count is zero, which is wrong

我无法理解为什么保留计数为零。 navController 定义为

@property (nonatomic, retain) UINavigationController *navController;

该属性不应该将保留计数增加一吗?

This question is related to this one, but simpler. [I think I may be close to the end of these dumb questions and can get down to serious business :)].

I have a retain property and set to it like this:

UINavigationController *thing = [[UINavigationController alloc] initWithRootViewController:one];
    // thing's retain count is one
navController = thing;
    // thing's retain count is still one!
[thing release];
    // now retain count is zero, which is wrong

I cannot understand why the retain count gets to zero. navController is defined as

@property (nonatomic, retain) UINavigationController *navController;

Shouldn't the property increase the retain count by one?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ゝ偶尔ゞ 2024-09-13 12:56:59

问题是:您直接分配给属性的基础实例变量,而不是调用设置器。属性魔法不是这样触发的。尝试

self.navController = thing;

改为(其余代码无需更改)。

The problem is: you are assigning directly to the property's underlying instance variable instead of calling the setter. The property magic is not triggered this way. Try

self.navController = thing;

instead (remaining code needs no change).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文