我刚刚开始工作,所以我想我会与你们分享我的解决方案。
UITableView
在为和嵌套设置必要的委托和数据源之后,UICollectionView
您可以UICollectionView
像这样制作第一个可选视图
- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
...
[tableViewCell bringSubviewToFront:tableViewCell.yourCollectionView];
return cell;
}
这将使UICollectionView
第一件事可以通过委托选择
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath;
将使用UITableView
委托选择视图的任何其他部分
- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
希望这可以帮助!