在UITableview部分中加载延迟IPhone

时间:2012-05-18 11:13:26

标签: iphone

我有带图像的“n”阵列,我希望使用延迟加载概念在tableview的“n”部分相应地显示图像。我知道如何在包含一个部分的表中显示一个数组图像。任何人都可以帮助我? ? 在此先感谢

2 个答案:

答案 0 :(得分:0)

你几乎做同样的事情;而不是返回数字,如果图像作为tableView中的行:numberOfRowsInSection并返回numberOfSectionsInTableView:为1 - 你扭转局面。让tableView:numberOfRowsInSection返回1(每个图像一个部分)和numberOfSectionsInTableView:返回图像数。

你的tableView:cellForRowAtIndexPath:代码看到相同的变化;而不是从indexPath.row获取索引,而是从indexPath.section获取它。

这就是它。

DW传递。

答案 1 :(得分:0)

只需:

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

    return [yourImagesArray count];
}