保留 UITableView 方法中不可见的数组计数?
我遇到以下问题:在我的应用程序中,我用从互联网上以 XML 格式读取的一些数据填充 NSMutableArray。在同一个类中,我想用该数组的数据填充 UITableView。在整个类中 - 即使在 viewDidUnload 中,我也可以要求保留计数,它甚至大于 1,加上我可以计算数组中的实体数量(大于零)。
在返回表中行数和表单元格的两种方法中,保留计数为 0,项目计数也为 0。
我一到家就会发布一些代码 - 但也许外面有人已经有了想法?
谢谢你!
I am having the following issue: in my application I fill an NSMutableArray with some data I read from the internet in XML format. In the same class I want to fill a UITableView with the data of that array. In the whole class - even in viewDidUnload I can ask for the retain count and it is even greater than 1 plus I can count the number of entities in the array (being greater than zero).
In the both methods giving back the number of rows in the table and the table cells the retain count is 0 and the count of items is 0 too.
I'll post some code as soon as I'm at home - but maybe someone out there already has an idea?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想我是因为我没有添加 TableViewController 。当我这样做时,它能够轻松访问数组。
I guess I cam from I did not have a TableViewController added. When I did so it was able to access the Array with ease.