0
在我的應用程序中,我有一個表視圖和4圖像視圖在一行。當我滾動表視圖時,索引路徑方法的行再次被調用,然後應用程序崩潰。如何防止滾動時重新加載表格視圖。我的部分代碼是: -表視圖方法單元格索引路徑行再次重新加載,然後應用程序崩潰
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = nil;
static NSString *AutoCompleteRowIdentifier = @"AutoCompleteRowIdentifier";
cell = [tableView dequeueReusableCellWithIdentifier:AutoCompleteRowIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:AutoCompleteRowIdentifier] autorelease];
for (int i=0; i <= [wordsInSentence count]; ++i) {
UIImageView *imageView1 = [[[UIImageView alloc] initWithFrame:CGRectMake(30+90*(i%4), 15, 80, 100)] autorelease] ;
imageView1.tag = i+1;
[imageViewArray insertObject:imageView1 atIndex:i];
[cell.contentView addSubview:imageView1];
}
}
int photosInRow;
if ((indexPath.row < [tableView numberOfRowsInSection:indexPath.section] - 1) || ([wordsInSentence count] % 4 == 0)) {
photosInRow = 4;
} else {
photosInRow = [wordsInSentence count] % 4;
}
for (int i = 1; i <=photosInRow ; i++){
imageView = (UIImageView *)[cell.contentView viewWithTag:j];
[self showImage:imageView];
}
return cell;
}
請幫忙。任何幫助將不勝感激。
感謝, 克里斯蒂
@Christian請花一些時間和格式化您的問題。它有助於。 –
sry會在將來發出砰砰聲,請給我答案 – Christina