以下に、セルの作成に使用しているコードを示します。セルは再利用されていません。毎回、cell==nil
真実になっています。
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;
}