通过为主表视图创建自定义单元格,我在表视图的每个单元格中都有一个表视图。问题是我可以看到除第一个索引路径之外的所有索引路径的表视图内容。如果我滚动表格视图以使第一个单元格离开屏幕并向后滚动第一个单元格,则显示第一个单元格中的内容。
请在下面找到我的代码
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [itemArray count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier=@"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
cell.textLabel.lineBreakMode = UILineBreakModeWordWrap;
cell.textLabel.numberOfLines = 0;
cell.textLabel.font = [UIFont fontWithName:@"Helvetica" size:17.0];
}
for (int i=0; i<[itemArray count]; i++) {
////NSLog(@"row is %d",i);
if (indexPath.row==i) {
cell.textLabel.text=[itemArray objectAtIndex:i];
}
}
return cell;
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
谁能告诉我为什么会这样。我也希望在屏幕上看到第一个单元格的内容。