Pablo Paciello
Results
2
comments of
Pablo Paciello
Hi guys, I could make the `UITableView` sections work without subclassing the `UICollectionView` nor adding new properties. Just used `indexPath.section` instead of `indexPath.row` in the `tableView willDisplayCell:` method: ``` swift...
In the `collectionView` you should have something like this: `cell.titleItem.text = self.songURL[collectionView.tag][indexPath.item]` I don't think you need to check for the `indexPath.section == 1` there. Hope it works for you.