Trying to use ASCollectionDataSourceInterop
to combine UICollectionViewCell
and ASCellNode
in one data source as it is described here
However I run into issue here, because
func collectionView(_ collectionView: ASCollectionView, nodeForItemAt indexPath: IndexPath) -> ASCellNode {
return nil
}
Doesnt work in swift, maybe there is a way to workaround in swift
Found a solution: just make the return type an implicitly unwrapped optional:
The compiler does warn you about the type mismatch, but everything works well