延迟加载单元格图像,用于以编程方式创建的tableview

我以编程方式创建了许多tableviews。 客户端特别要求布局不是UITableView控制器。 就像是:

在此处输入图像描述

表格视图的数量以及每个表格中的项目数量各不相同。 加载视图时,将立即创建所有表。 我想在表格视图中为单元格添加缩略图。 我需要找到一种延迟加载缩略图的方法。 我已成功在UITableViewController上实现了延迟加载。 我之前的成功部分是因为我可以使用[tableview reloadData]调用来指示在缓存图像后可以显示单元格缩略图。 如何以编程方式创建的tableviews实现延迟加载? 我最初的想法是在表视图中添加某种选择器,以便在为特定单元格缓存图像后更新单元格。 我不确定这是如何工作的,并希望得到任何帮助。

以下是我用于以编程方式创建表视图的代码(我正在使用ARC):

@interface SyllabusSegmentedViewController : UIViewController  @property (nonatomic, weak)IBOutlet UIScrollView *SyllabusSegmentedSV; 

 @implementation SyllabusSegmentedViewController - (void) viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; // Programmatic creation of the table views and titles for Table Views [self ProgramaticCreationOfTableView:self]; } -(void) ProgramaticCreationOfTableView:(id)sender { for (numTableViews = 0; numTableViews < [syllabusDispayed.LevelNames count]; numTableViews ++) { // Create Table View UITableView *newTableView = [[UITableView alloc] init]; newTableView = [self createTableView:self]; // Create UILabel that will act as Title for Each table view UILabel *newLabel = [[UILabel alloc] initWithFrame:[self MakeHeaderLabelFrame:numTableViews workingTableView:newTableView]]; [newLabel setBackgroundColor:nil]; newLabel.backgroundColor = [UIColor colorWithRed:(204/255.0) green:(204/255.0) blue:(204/255.0) alpha:1.0]; newLabel.text = [syllabusDispayed.LevelNames objectAtIndex:numTableViews]; newLabel.textAlignment = NSTextAlignmentCenter; UIFont *font = [UIFont boldSystemFontOfSize:20]; UIColor *color = [UIColor darkGrayColor]; newLabel.font = font; newLabel.textColor = color; [newTableView setBackgroundView:nil]; newTableView.backgroundColor = [UIColor colorWithRed:(204/255.0) green:(204/255.0) blue:(204/255.0) alpha:1.0]; newTableView.scrollEnabled = NO; newTableView.frame = ([self MakeTableViewFrame:numTableViews workingTableView:newTableView]); newTableView.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin; newLabel.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin; [SyllabusSegmentedSV addSubview:newTableView]; [SyllabusSegmentedSV addSubview:newLabel]; } } -(UITableView *)createTableView:(id)sender { UITableView *tableView = [[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame] style:UITableViewStyleGrouped]; tableView.delegate = self; tableView.dataSource = self; tableView.accessibilityLabel = [NSString stringWithFormat:@"%d", numTableViews]; return tableView; } -(CGRect)MakeHeaderLabelFrame:(int)workingTableNumber workingTableView:(UITableView *)newTableView { int numberOfPreviousLevelsRows = 0; for (int i = 0; i < workingTableNumber ; i ++) { numberOfPreviousLevelsRows += [[syllabusDispayed.SyllabusDictionary objectForKey:[syllabusDispayed.LevelNames objectAtIndex:i]] count]; } return CGRectMake(0, 75 + ((workingTableNumber * 80) + (numberOfPreviousLevelsRows *55)), self.view.bounds.size.width, 25); } -(CGRect)MakeTableViewFrame:(int)workingTableNumber workingTableView:(UITableView *)newTableView { int numberOfPreviousLevelsRows = 0; for (int i = 0; i < workingTableNumber ; i ++) { numberOfPreviousLevelsRows += [[syllabusDispayed.SyllabusDictionary objectForKey:[syllabusDispayed.LevelNames objectAtIndex:i]] count]; } return CGRectMake(0, 95 + ((workingTableNumber * 80) + (numberOfPreviousLevelsRows *55)), self.view.bounds.size.width, 65*[newTableView numberOfRowsInSection:0]); } 

我还为UITableViewDelegate实现了必要的function,例如

 - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 

看一下库SDWebImage

我想这就是你要找的东西。

但是你的方法可能是真正的问题:我认为创建多个一个接一个的TableView并不是真的有必要 – 这是部分可以做的事情。

编辑

TableViewDataSource的方法名为– numberOfSectionsInTableView: .

同样通过实现– tableView:heightForHeaderInSection:– tableView:heightForFooterInSection:您可以在各部分之间获得必要的空间。

您应该在SyllabusSegmentedViewController中实现所有这些方法。