0

嗨,我正在开发一个带有 uicollectionview 的 uitableview 的 iphone 应用程序,如何使用 ios 7 做到这一点。

我只是想这样做,因为我认为我需要在 tableviewcell 中使用 uicollectionview。 在此处输入图像描述

如果有人这样做,请帮助我。

或者如果您有任何其他想法,请回复我。

这就是我尝试过的

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

static NSString *identifier = @"cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier                                                            forIndexPath:indexPath];

cell.selectionStyle = UITableViewCellSelectionStyleNone;

Collectionclass *obj = [[Collectionclass alloc] init];

UICollectionViewFlowLayout *layout=[[UICollectionViewFlowLayout alloc] init];

UICollectionView *_collectionView=[[UICollectionView alloc] initWithFrame:self.view.frame collectionViewLayout:layout];


[_collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"cellIdentifier"];
[_collectionView setBackgroundColor:[UIColor redColor]];


[_collectionView setDataSource:obj];
[_collectionView setDelegate:obj];

[cell addSubview:_collectionView];

    return cell;
 }
4

1 回答 1

0

你可以试试这个 gr8 教程,即使它有源代码供你参考。它对我有用。

http://ashfurrow.com/blog/putting-a-uicollectionview-in-a-uitableviewcell

不要责怪,如果链接过期。

于 2013-11-12T07:04:22.007 回答