UITableViewCell类

- (void)awakeFromNib {
 //Registering CollectionViewCell
}


- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
    return 1;
}

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
    return [productsData count];
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    CollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"collectionCell" forIndexPath:indexPath];
    NSDictionary *cellData = [productsData objectAtIndex:[indexPath row]];
    cell.imageView.image = [UIImage imageNamed:[cellData objectForKey:@"image"]];
    return cell;
}

如何调用集合视图的委托方法?

最佳答案

TableViewCell.h文件中添加。

@property (nonatomic, assign) UICollectionView *yourCollectionView;


TableViewCell.m文件中添加。

@synthesize yourCollectionView;


在您的init方法中分配集合视图并设置代表和数据源。

yourCollectionView = [UICollectionView alloc] initWithFrame://( your frame) ];

yourCollectionView.dataSource = self;
yourCollectionView.delegate = self;
// set other properties as per tour needs .

[self.contentView addSubview:yourCollectionView];


添加检查您的委托方法的方法。希望对您有帮助。

09-05 10:00