嗨,我正在开发一个带有 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;
}