我在我的<密码>上看到了一个不想要的囚室。 当我为测试目的对囚室进行装配时,我做以下工作:
- (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];
}
// Configure the cell...
if (indexPath.row == 0)
{
cell.textLabel.text = @"LOL";
}
else {cell.textLabel.text = @"Hello";}
return cell;
}
我已决定将1个牢房归还1个。 就回到的囚室而言,我只看到说“LOL”的囚室,但上面看上像一个空白的囚室。
Image attached:
https://i.stack.imgur.com/u1kKS.png” alt=“Table View”/>
www.un.org/Depts/DGACM/index_spanish.htm EDIT:我定下来,删除了整个表层,并在翻开新台。