gpt4 book ai didi

iphone - iphone 是否可以一次在一个屏幕上设置多个tableview

转载 作者:行者123 更新时间:2023-12-03 20:28:07 25 4
gpt4 key购买 nike

我是 iphone 的初学者。我需要开发如附件中所示的屏幕。机票、飞往纽约的航类、400 美元等所有值均来自数据库。在此屏幕中,机票、出租车/出租车是类型,显示在不同的单元格中。可以使用一个 TableView 或多个 TableView 。请给我建议。 enter image description here

最佳答案

您不需要创建两个表格 View 。因为您可以在单个 TableView 中实现此功能。将一个 tableView 对象创建为...

UITableView *tableView;

在它使部分数量与类别数量(机票、出租车/出租车)一样多之后,如下所示:-

- (NSInteger)tableView:(UITableView *)tableView numberOfSections:(NSInteger)section  
{
return [category count];
}

之后给他们标题:-

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section 
{
if (section == 0)
{
return @"header one";
}
}

这就是执行单击某行的功能后的情况:-

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
}

因此您可以在单个 tableView 中实现您的功能。希望对您有所帮助。

关于iphone - iphone 是否可以一次在一个屏幕上设置多个tableview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10090218/

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