gpt4 book ai didi

objective-c - 不同的部分在 iOS 的 TableView 中包含不同数量的行

转载 作者:可可西里 更新时间:2023-11-01 06:19:03 25 4
gpt4 key购买 nike

假设我在 TableView 中有第 1、2 和 3 部分,

对于第 1 部分,它有 3 行
对于第 2 部分,它有 5 行
对于第 3 部分,它有 1 行

在 Objective-c 中,如何在 numberOfSectionsInTableViewnumberOfRowsInSection 中实现此操作?除了这两个功能,我还需要做些什么吗?谢谢

最佳答案

如果这是静态数据那么这样做

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
return 3;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{

if(section==0)
return 3;
else if(section==1)
return 5;

return 1;
}

如果它是基于数据库的,则制定适当的数据结构并使用它进行管理。

关于objective-c - 不同的部分在 iOS 的 TableView 中包含不同数量的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7752749/

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