我面临着一个简单而烦人的内存释放问题和向已释放对象发送消息的问题。
我正在尝试从网页获取 Rss 提要。我在第一阶段分两个阶段开发了小程序,因为我对 iPhone 开发还不熟悉,所以我尝试从网页中获取 Rss 提要的文本部分,成功且没有问题。在第 2 阶段,我尝试获取图像的链接并在每个 UITableViewCell 和之后的详细视图上呈现它们。
我有一个加载 rss 的类,负责解析和返回我返回的可变数组[array copy]
。一切正常,即使加载需要一些时间。当我运行应用程序并尝试滚动表格视图时,我遇到崩溃和 NSZombie 消息:
objc [37372]:FREED(id):消息保留发送到释放对象=0x3930cd0
当我尝试在不滚动的情况下加载 detailViewController 时也会发生这种情况,我发布了一些 tableViewController 以查看问题所在。
- (void)viewDidLoad {
[super viewDidLoad];
post = [[Posts alloc]init];
//self.tableView.rowHeight = 160.0;
self.navigationController.navigationBar.barStyle = UIBarStyleBlack;
self.navigationController.navigationBar.tintColor = [UIColor purpleColor];
NSLog(@"parser is about to init");
parser = [[XmlParser alloc] init];
array = [parser initWithURL:@"http://backend.deviantart.com/rss.xml?q=boost%3Apopular+meta%3Aall+max_age%3A8h&type=deviation&offset=0"];
//array = [parser initWithURL:@"http://www.enet.gr/rss?i=news.el.categories&c=politikh"];
NSLog(@"posts has %d items",[array count]);
[parser release];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
post = [array objectAtIndex:indexPath.row];
// Set up the cell...
[cell.textLabel text:[post itemTitle]];
[cell.detailTextLabel setText:[post itemBody]];
[cell.imageView setImage:[self.post itemthumbnail]];
}
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
// Navigation logic may go here. Create and push another view controller.
FirstDetailedViewController *anotherViewController = [[[FirstDetailedViewController alloc] initWithNibName:@"FirstDetailedViewController" bundle:nil]autorelease];
NSLog(@"posts count : %d", [array count]);
post = [array objectAtIndex:indexPath.row];
anotherViewController.currpost = [post retain];
[self.navigationController pushViewController:anotherViewController animated:YES];
}
后冲突是一些 NSMutableStrings 和 UIImages,它们都在它们自己的 init 中分配和初始化,并在它们自己的 dealloc 方法中释放。当我尝试在不滚动的情况下点击单元格时,我也遇到了问题,但那是明天的问题。