下面顯示的是我用來創建單元的代碼。該單元格未被重用。每當cell==nil
成爲現實時。UITableViewcell沒有重用
我正在xib中正確設置標識符。請幫幫我。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
SRCourseListCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];
if (cell == nil) {
NSArray *nib=[[NSBundle mainBundle]loadNibNamed:@"SRCourseListCell" owner:self options:nil];
cell=[nib objectAtIndex:0];
}
return cell;
}