gpt4 book ai didi

IOS:UITableView 中的多个 PrototypeCells

转载 作者:行者123 更新时间:2023-11-28 21:22:13 25 4
gpt4 key购买 nike

我在一个项目中工作,在这个项目中,经过数小时的研发后,我必须创建一个类似 newsfeed View 的 facebook 我选择在 UITableView 中使用原型(prototype)单元格作为 newsfeed View ,现在第 1 行中的问题我必须只显示单个信息,而在第二个单元格我必须传递一个数组,它有多个元素,就像在 fb 墙上一样。其中第二个单元格的内容随着 par 数组大小而变化,而第一个单元格保持不变。请以任何其他方式建议我如何执行所有这些操作。

currently i am using the following code in tableview delegate methods
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}


-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 2;

}

-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *identifier;
if (indexPath.row == 0)
{
identifier = @"OneCellId";
}
else if (indexPath.row == 1)
{
identifier = @"OtherCellId";
}

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];


return cell;
}

enter image description here

最佳答案

在 HeaderSection 中有您的静态 View (指的是第一个单元格)。

关于IOS:UITableView 中的多个 PrototypeCells,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39411286/

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