gpt4 book ai didi

ios - 如何让 uitableview 一次加载多个部分?

转载 作者:行者123 更新时间:2023-11-28 21:51:31 24 4
gpt4 key购买 nike

我有一个 UITableView 来显示图片,每张图片都有一个名称;由于某些原因,我必须将名称作为节标题,将图片作为节行,主要代码如下:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return [dataList count];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
...
return cell;
}
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
...
return view;
}

图片大到640*640;我的问题是:每次,图片都不会加载,直到它的顶部出现在屏幕上;我想一次加载很多图片,但事实是当它的顶部显示在屏幕上时加载了图片;

最佳答案

由于要求您提供单元格的委托(delegate)方法在新单元格即将进入 View 之前不会被调用,因此您必须在委托(delegate)方法之外的某个地方预加载图像。

关于ios - 如何让 uitableview 一次加载多个部分?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28143996/

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