スクロール時にUITableViewがクラッシュするここに...なぜ私はそれがクラッシュしたスクロールしようとする場合、私は今の合計数= 22スクロール時にUITableViewがクラッシュする
Row Number 0
Row NUmber 1
.
.
Row Number 21 (This row number will pull the last object from ObjectArray)
を見ることができますコンソールで
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
NSLog(@"Total Count: %d",count);
return [ObjectArray count] ;
}
- (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];
cell.textLabel.numberOfLines = 0;
cell.textLabel.font = [UIFont fontWithName:@"Arial" size:12.0];
cell.detailTextLabel.font = [UIFont fontWithName:@"Arial" size:10.0];
[cell.textLabel sizeToFit];
[cell setAccessoryType:UITableViewCellAccessoryDetailDisclosureButton];
}
// Configure the cell.
NSLog(@"Row Number %d", indexPath.row);
cell.textLabel.text = [ObjectArray name];
return cell;
}
...サンプルコードですか?誰もが...これで
コードを正しく再フォーマットし、クラッシュのスタックトレースを投稿してください。 –
ObjectArrayの詳細についても触れてください。現時点ではObjectArrayはArrayではないように使用されています。すなわち、 [ObjectArray name] ... 'array'からオブジェクトを取得しない – martinws
スタックトレースが必要です。 –