我知道这个问题之前已经发布过,我根据他们的更正修复了我的代码,但仍然没有得到单元工作的细节,只有正文。这是我的代码:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell==nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];//It's well initialized
}
cell.textLabel.text=[myArray objectAtIndex:indexPath.row];
cell.detailTextLabel.text=@"All the stores";
return cell;
}
我想看到的是一个文本和一个详细的文本。但是,我只看到正文。提前谢谢。