在同一个indexPath中添加两个单元格?

时间:2016-12-21 13:26:54

标签: ios swift uicollectionview

我试图在同一索引路径中添加两个单元格,或类似的东西。

我的对象代表每个单元格。

var object = [[category: "book", title: "blabla"],
              [category: "book", title: "blabla"],
              [category: "game", title: "blabla"], 
              [category: "game", title: "blabla1"],
              [category: "movie", title: "blabla"]]

所以,我按每个元素提供我的collectionView,但是我需要添加一个标题单元格来获得像

这样的结果
 __Title cell book
 ____cell book
 ____ceel book
 __Title cell game
 ____cell game
 ____cell game
__Title cell movie
____cell movie
____cell movie

那么有可能告诉"当我们在X类的第一个元素上添加标题单元格时?或者我需要在我的数组中添加一个元素标题?

1 个答案:

答案 0 :(得分:0)

您需要为每个类别设置sections

Section1: book
    Cell1: book1
    Cell2: book2
...

另外,请查看UICollectionView here