iPhone 属性设置为零
我使用此声明设置了一个属性:
@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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以执行自定义 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;
在调试器中,停在将属性设置为值的行上。
现在使用调试器窗口(右上角)中的变量视图打开“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.