我正在创建一个应用程序,它应该连接到sql数据库广告,在表格视图单元格中显示其内容。我已经建立了与数据库的连接,它现在工作正常,然而,它没有在tableview中显示任何内容,我无法理解它为什么运行不正常。如果您可以帮助我,代码如下:
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
NSLog(@"test");
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
cell.textLabel.text=[NSString stringWithFormat:@"%@",[[self.entries objectAtIndex:indexPath.row] objectAtIndex:0]];
cell.detailTextLabel.text=[self.entries objectAtIndex:indexPath.row];
return cell;
}
如果我这样做,它甚至不会显示任何静态
cell.detailTextLabel.text=@"test";
有什么建议吗?提前谢谢。