0

我有一个 UITableViewCell,里面有一个 UICollectionView。我的自定义 UITableViewCell 负责 UICollectionView 的数据源和方法。一切正常,除了当我向 cellForItemAtIndexPath 添加一些日志记录时,我看到所有 UICollectionViewCells 将立即加载。所以向下滚动时我的延迟/延迟加载。

这是我在自定义 UITableViewCell 中的日志记录

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView                cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    NSLog(@"Loading cell: %i", indexPath.row);
}

tableViewCell 高度是根据 UICollectionNView 需要处理的项目自动计算的。所以在我的 ViewController 的 tableview 方法中:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    //return dynamically the height based on the items to show in the collectionview.
}

所以我想这是我的问题,也是它不进行延迟加载的原因。有一个简单的解决方法吗?或者是这样的:

将 UICollectionView 放入 UITableViewCell

资料来源:http ://ashfurrow.com/blog/putting-a-uicollectionview-in-a-uitableviewcell

这样,延迟加载将仅由 UITableView 而不是 UICollectionView 处理。

这是我的自定义 UITableViewCell 的完整代码,但正如您将看到的那样,这真的没什么特别的。

@implementation PeopleJoinedThisPlaceCell

@synthesize people = _people;

- (void)awakeFromNib
{
    collectionView.delegate = self;
    collectionView.dataSource = self;
    collectionView.backgroundColor = [UIColor clearColor];
}

- (void)setPeople:(NSArray *)people
{
    _people = people;
    [collectionView reloadData];
}


#pragma mark - CollectionViewController delegate methods

- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
{
    if(_people == NULL) return 0;
    return 1;
}

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
    if(_people == NULL) return 0;
    return _people.count;
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView_ cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    NSLog(@"Loading cell: %i", indexPath.row);
    ImageCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"People" forIndexPath:indexPath];

    PFObject *userPlace = [_people objectAtIndex:indexPath.row];
    PFUser *user = [userPlace objectForKey:UserClassName];
    [cell.BackgroundImageView setImage:[UIImage imageNamed:@"photo-big-bg"]];
    [cell.ImageLoader startAnimating];
    [[UserPhotos sharedInstance] getCachedSmallPhotoForUser:user withBlock:^(UIImage *image, NSError *error) {
        [cell.ImageView setImage:image];
        [cell.ImageLoader stopAnimating];
    }];

    return cell;
}

- (void)collectionView:(UICollectionView *)collectionView_ didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
    PFObject *userPlace = [_people objectAtIndex:indexPath.row];
    [_delegate gotoUserProfile:userPlace];
}

@end
4

0 回答 0