我有一个历史页面,它是一个有 5 行的 UItableview。我已将原型单元格设置为我想要的规格,并将此文本添加到相应的 historyviewcontroller.h 文件中:
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 5;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"HistoryItem"];
return cell;
}
当我运行应用程序时,我没有看到任何单元格。我显然错过了一些东西,但我不太明白是什么。