tableView和deallocated实例的问题

时间:2013-11-07 00:16:49

标签: ios objective-c memory-management tableview

使用XCode(4.6)提供的主视图模板创建一个简单的RSS提要阅读器。

应用程序加载第一个完整标题的屏幕,然后当向下或向上滚动时,它会出错并出错。

我在控制台中收到的错误是:

[__NSArrayM retain]: message sent to deallocated instance 0x7522d40

跟踪在我的cellForRowAtIndex函数中引导我到这一行。 XCode将此行标记为信号SIGKILL。 (这可能是因为我根据调试教程中的指令设置了僵尸对象。)

NSMutableDictionary * news = (NSMutableDictionary *)[self.nf.newsStories objectAtIndex:indexPath.row];

以下是该功能的其余部分。

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

NSString * cellId = @"feeds";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier: cellId];

if(cell == nil){
    cell = [[UITableViewCell alloc] init];
    NSMutableDictionary * news = (NSMutableDictionary *)[self.nf.newsStories objectAtIndex:indexPath.row];
    [cell.textLabel setText:[news objectForKey:@"title"]];
}

return cell;
}

这是我的viewDidLoad函数。

- (void)viewDidLoad
{
[super viewDidLoad];
self.nf = [[NewsFeed alloc]init];
[self.nf setFeedURL:[NSURL URLWithString:@"http://rss.cnn.com/rss/cnn_topstories.rss"]];
[self.nf retrieveFromInternet];

//For debugging. 
for(id newsItem in self.nf.newsStories){
    NSDictionary * d = (NSDictionary *)newsItem;
    NSLog(@"Title: %@\nDescription: %@", [d objectForKey:@"title"], [d objectForKey:@"description"]);
}

}

任何帮助将不胜感激。多谢你们。

1 个答案:

答案 0 :(得分:2)

出于某种原因,我无法添加评论,但您应该移动

NSMutableDictionary * news = (NSMutableDictionary *)[self.nf.newsStories objectAtIndex:indexPath.row];
    [cell.textLabel setText:[news objectForKey:@"title"]];

超出条件......而且我不确定你为什么要让它变得可变。另外,将单元格启动更改为:

cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier: cellId];

除此之外,如果您使用ARC,请确保您的新闻源中的阵列的属性设置为强。