メモリの割り当て解除と解放されたオブジェクトへのメッセージ送信という、単純でありながら厄介な問題に直面しています。
Web ページから RSS フィードを取得しようとしています。アプレットを 2 段階で開発しました。ステージ 1 では、まだ iphone 開発に慣れていないので、Web ページから 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];
}
ポスト クラッシュはいくつかの NSMutableString と UIImage であり、それらはすべて独自の init で割り当ておよび初期化され、独自の dealloc メソッドで割り当て解除されます。スクロールせずにセルをタップしようとすると問題が発生しますが、それは明日の問題です。