gpt4 book ai didi

ios - 为什么我的单元格不显示在我的 TableViewController 中?

转载 作者:行者123 更新时间:2023-11-28 20:09:46 24 4
gpt4 key购买 nike

我的 TableView Controller 中的单元格有问题。

我创建了一个 TableView Controller ,其中包含一些用户可以编辑的单元格,但这些单元格不显示...

这是我的 View Controller 代码:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{

// Return the number of sections.
return 0;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{

// Return the number of rows in the section.
return 0;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

// Configure the cell...

return cell;
}

还有标题:

@interface AircraftDetailsViewController : UITableViewController
@property (weak, nonatomic) IBOutlet UITextField *AircraftNameLabel;
@property (weak, nonatomic) IBOutlet UITextField *AircraftImmatLabel;

如果有人能帮助我...我不明白为什么它是空的...

我忘了补充一点,我的单元格是“静态单元格”。

编辑:问题已解决。我只是评论这些行:

//- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
//{
//
// // Return the number of sections.
// return 0;
//}
//
//- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
//{
//
// // Return the number of rows in the section.
// return 0;
//}
//
//- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
//{
// static NSString *CellIdentifier = @"Cell";
// UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
//
// // Configure the cell...
//
// return cell;
//}

现在可以了。

最佳答案

如果 Storyboard中有静态 TableView ,请不要实现任何 数据源方法。 UITableViewController 有自己的实现,您已在上面的代码中覆盖了这些实现。如果您确实覆盖了这些方法,则必须调用 super 实现,以获取静态单元格的值,然后根据需要进行修改。

即使您不使用静态单元格,您仍然看不到任何东西,因为您已经告诉您的表格 View 表格中没有部分也没有行。

关于ios - 为什么我的单元格不显示在我的 TableViewController 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20758278/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com