访问 UITableViewController 中的 NSMutableArray 崩溃

发布于 2024-12-07 06:19:05 字数 835 浏览 0 评论 0原文

我是 Object-c 新手,想要在 Xcode 4 中使用 JSON 数据源制作一个基于 UITableViewController 的应用程序。 我导入了 JSON 框架并定义了一个 NSMutableArray 来填充响应:

- (void)connectionDidFinishLoading:(NSURLConnection *)connection {

[connection release];

NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
[responseData release];

items = [responseString JSONValue];

[self.tableView reloadData];
}

我一切顺利,但是当我尝试在

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

函数中访问我的项目数组时,它使我的应用程序崩溃。

可能是什么问题? 提前致谢!

更新: 我修改了代码的数组填充部分,解决了崩溃问题: NSMutableArray *a = [responseString JSONValue];

for(NSDictionary *it in a) {

    [items addObject:it];
}

但我还是不知道为什么...

I'm new in Object-c and want to make a UITableViewController based app with JSON data source in Xcode 4.
I imported the JSON framework and defined an NSMutableArray to fill it with the response:

- (void)connectionDidFinishLoading:(NSURLConnection *)connection {

[connection release];

NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
[responseData release];

items = [responseString JSONValue];

[self.tableView reloadData];
}

I Everything went well but when I try to access my items array in the

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

function, it crashes my app.

What could be the problem?
Thanks in advance!

UPDATE:
I modified the array filling part of the code and it solved the crash problem:
NSMutableArray *a = [responseString JSONValue];

for(NSDictionary *it in a) {

    [items addObject:it];
}

But I still don't know why...

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

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

发布评论

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

评论(1

纵性 2024-12-14 06:19:05

看起来就像您将 JSON-Value 分配给实例变量一样。
该对象是自动释放的(“JSONValue”不包含单词 alloc、init 或 copy),因此它会在不久的将来消失。

尝试为您的对象添加属性:
标题:

@property (nonatomic, retain) NSArray *items;

实施:

@synthesize items;

...

self.items = [responseString JSONValue];

...

- (void)dealloc {
    ...
    self.items = nil;
    [super dealloc];
}

It semms like you assign the JSON-Value to an instance variable.
The object is autoreleased ("JSONValue" doesn't contain the words alloc, init or copy) so it will go away some near time in the future.

Try adding a property for your object:
Header:

@property (nonatomic, retain) NSArray *items;

Implementation:

@synthesize items;

...

self.items = [responseString JSONValue];

...

- (void)dealloc {
    ...
    self.items = nil;
    [super dealloc];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文