我有两个问题
1) 如果我不注释掉 if(cell==nil) 那么文本标签不会显示在我手机上的一个表格视图中。
2)另一个我有同样的问题,但如果我把这个注释掉了,文本似乎没有改变。但是,如果我
NSLog(@"did select and the text is %@",[tableView cellForRowAtIndexPath:indexPath].textLabel.text);
我得到输出“确实选择并且文本是'站点编号 1'”这是我想要的,但是我在电话屏幕上看到的文本不是我在控制台中看到的任何人都可以帮忙吗?这是我的代码:
我在表格视图的属性检查器中的单元格标识符是“selcell”
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
int row=indexPath.row;
NSLog(@"number in sites is %d cell for row %@",[sites count],[sites objectAtIndex:row]);
static NSString *CellIdentifier = @"selcell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
// if(cell==nil)
// {
cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
cell.textLabel.text=[NSString stringWithFormat:@"site number %@",[sites objectAtIndex:row]];
// }
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"did select and the text is %@",[tableView cellForRowAtIndexPath:indexPath].textLabel.text);
[self.delegate didSelectSite:[sites objectAtIndex:indexPath.row]];
}