可能是一个简单的问题,但我找不到答案。当我设置我的 textLabel 时,它会覆盖我在单元格内容视图中的详细信息披露按钮,通过情节提要放入。现在它只在选择单元格时显示。我的代码如下所示:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"accountCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
User *user = [arr objectAtIndex:indexPath.row];
// Configure the cell...
cell.textLabel.text = [user username];
return cell;
}
当我拿走 cell.textLabel.text = [user username]; 如我所愿,它一直显示。有小费吗?我想我得为我的按钮输入一些代码......