UITableViewCell 中的 UICollectionView

Posted

技术标签:

【中文标题】UITableViewCell 中的 UICollectionView【英文标题】:UICollectionView inside an UITableViewCell 【发布时间】:2014-09-23 15:47:06 【问题描述】:

我注意到 iosUITableViewCell 中使用 UICollectionView 时非常卑鄙。我想要实现的目标是在UITableViewCell 中拥有一组图像(UICollectionView 方法)。我想模仿 Facebook 的帖子风格,我想,他们有一个 UITableView,带有自定义单元格等等,但是这就是问题...

我已设法将UICollectionView 放入UITableViewCell 中,它工作正常且完美,没问题,一切都显示正常,可点击等等。但是,我尝试重构我的代码,将 UICollectionViewDataSourceUICollectionViewDelegate 提取到单独的文件中以便重用它们并且在 Main View Controller 上的代码更少,它是在这里,当我的 Nightmare 开始时,我不知道为什么如果我使用单独的文件 iOS 循环配置 Cells。例如:

-(void)configureCell:(UICollectionViewCell*)customCell atIndexPath:(NSIndexPath*)indexPath;

上面的方法在进程的两个部分被调用:

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
 NSString *identifier = [self retrieveIdentifierForIndexPath:indexPath];
 UITableViewCell *myCell = [tableView dequeueReusableCellWithIdentifier:identifier];
 [self configureCell:myCell atIndexPath:indexPath];
 [cell setNeedsLayout];
 [cell layoutIfNeeded];
 [cell setNeedsUpdateConstraints];
 [cell updateConstraintsIfNeeded];
 CGFloat height = [cell.contentView systemLayoutSizeFittingSize:UILayoutFittingExpandedSize].height;
 return height;

上面的方法被调用来使用 AutoLayout 计算行高

在计算高度等之后,另一个方法调用“configureCell”方法:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

    NSString *rowName = [self retrieveIdentifierForIndexPath:indexPath];
    PostDetailTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:rowName forIndexPath:indexPath];

    //PreCondition
    if([rowName isEqualToString:@"LoadingRow"])
        return cell;
    

    // Configure the cell...
    [self configureCell:cell atIndexPath:indexPath withImages:YES];

    [cell setSelectionStyle:UITableViewCellSelectionStyleNone];

    return cell;

当调试器启动时,configureCell:atIndexPath:方法被一遍又一遍地调用。这是第二次发生这种情况。这是否意味着我不能“分离”DataSource?或者不可能UITableViewCell 中添加UICollectionView。或者,我是否使用了不好的方法?有没有办法做到这一点?

我对此感到非常困惑......

谢谢你们!

【问题讨论】:

我遇到了同样的问题.. 到目前为止没有得到解决。 通过整个单元格配置来确定行高并不好。 不知道如何计算高度:/我看到的所有示例都建议这样做 【参考方案1】:

我为此苦苦挣扎了很长时间,花了几个小时重新设计布局等。 我终于得到了解决方案:

这是我的单元格的头文件

@interface MyCustomTableViewCell : UITableViewCell
 @property (strong, nonatomic) IBOutlet UILabel *someLabel;
 @property (strong, nonatomic) IBOutlet UICollectionView *collectionView;

 -(void)setImages:(NSArray*)images;
@end

这就是实现文件(m)之外的魔力

@interface MyCustomTableViewCell() <UICollectionViewDataSource, UICollectionViewDelegate>
 @property (strong, nonatomic) NSArray *imageArray;
@end
@implementation MyCustomTableViewCell
-(void)setImages:(NSArray*)images
 _imageArray = images;
 [_collectionView setDataSource:self];
 [_collectionView setDelegate:self];
 [_collectionView reloadData];


#pragma mark - UICollectionViewDataSource Methods
...
...
...
#pragma mark - UICollectionViewDelegate Methods
...
...
...
@end

使用上述方法使 CollectionView 显示并显示其内容。我还想在 CollectionView 中添加一个动作,例如,当单击图像时显示 MWPhotoBrowser,我在单元格的 Header 文件中添加了一个方法:

-(void)setViewController:(UIViewController*)viewController;

在实现文件上设置它并在委托方法上调用 MWPhotoBrowser。我知道这很奇怪,因为它迫使我使用 Cell 来显示 DataSource 和 Delegate。当我应该能够在其他点回收我的 DataSource 和 Delegate 时,很奇怪。但它奏效了!!

谢谢你们!

【讨论】:

以上是关于UITableViewCell 中的 UICollectionView的主要内容,如果未能解决你的问题,请参考以下文章

collectionView:didSelectItemAtIndexPath:没有被调用

UITableViewCell 中的 UIDatePicker 更新 UITableViewCell 文本标签

更改 UITableViewCell 中的对象也更改了重用 UITableViewCell 的对象

确定 UITableViewCell 中的 UIButton

UITableViewCell 事件中的 UIButton 不起作用

UITableViewCell 中的 UICollectionView