UITableViewCell 可以作为 UICollectionView 的委托吗

can a UITableViewCell be the delegate for UICollectionView

我想在 UITabelViewCell

中设置一个 UICollectionView

到目前为止,我遇到了两种方法:
1. mainViewController是all的delegate,我们用tags http://ashfurrow.com/blog/putting-a-uicollectionview-in-a-uitableviewcell/

  1. UICollectionView 位于他的委托视图中 http://devblog.orgsync.com/2013/04/26/creating_scrolling_filmstrip_within_uitableview/

我的问题是 - 我可以使用方法 2 但跳过额外的视图并让 UITableViewCell 成为委托吗?

您可以只扩展 UITableViewCell 但要注意,因为单元格在 table 视图中被回收,因此 UICollectionView 也会被回收。