iPhone 属性设置为零

发布于 2024-08-07 06:32:01 字数 212 浏览 3 评论 0原文

我使用此声明设置了一个属性:

@property (nonatomic,retain) NSDictionary *itemData;

具有 1 个键 - 值对的字典。然后,我视图中的表视图获取字典的一个值作为节标题。但是当我返回访问相同的值时,它为零。

有什么建议吗?我已经为此工作了一个小时并浏览了文档,我准备好继续编码。

I set a property with this declaration:

@property (nonatomic,retain) NSDictionary *itemData;

to a dictionary with 1 key - val pair. The table view in my view then gets the one value for the dictionary fine as a section header. But when I go back to access that very same value, it is nil.

Any suggestions? I have been working on this for an hour and picking through documentation and I am ready to continue coding.

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

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

发布评论

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

评论(2

动听の歌 2024-08-14 06:32:01

您可以执行自定义 getter 并设置断点来查看代码在何处使用此属性以及在何处将其设置为 nil。

如果你没有找到这样的方法,那就是你直接访问了指针,搜索你在哪里使用指针。

另外,字典也是 nil 还是只是对象值?

编辑

更好:您可以在 @synthesize itemData; 上设置断点

You can do a custom getter and set a breakpoint to see where your code is using this propriety and where it is setting it to nil.

If you don't find that way, it's that you're accessing directly the pointer, search where you're using the pointer.

Also, is the dict also nil or only the object value?

EDIT

Ever better : you can set a breakpoint on your @synthesize itemData;

彩扇题诗 2024-08-14 06:32:01

在调试器中,停在将属性设置为值的行上。

现在使用调试器窗口(右上角)中的变量视图打开“self”对象,右键单击 itemData 变量,然后选择“监视变量”。然后继续,当该变量更改时代码将停止。

In the debugger, stop on the line that sets your property to a value.

Now open up the "self" object using the variable view in the debugger window (top right) and right-click on the itemData variable, then select "watch variable". Then continue, when that variable changes the code will stop.

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