我正在开发我的第一个iOS项目。它有一个UITableView,显示我从Web服务获得的数据并将其放入单个UITableViewCells。
在故事板中,我将原型单元格的样式更改为'字幕'在我的viewController中,我添加了一行代码,我设置了字幕,但是如果我运行应用程序,单元格仍然使用默认样式,并且字幕不会显示。
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"UITableViewCell" forIndexPath:indexPath];
NSDictionary *departure = self.departures[indexPath.row];
NSString *cellText = [NSString stringWithFormat: @"%@ %@ in %@ Min", departure[@"train"], departure[@"dest"], departure[@"time"]];
cell.textLabel.text = cellText;
cell.detailTextLabel.text = @"test"; //this line is being ignored
return cell;
}
我使用Xcode提供的主 - 细节模板尝试了同样的事情,并且它实际上有效,所以我想我搞砸了某个地方(可能是非常愚蠢的事情),但我似乎无法找到错误
欢迎任何帮助!
由于