I have a UITableView contains one horizontal scroll UICollectionView in every cell like this
override func tableView(_ tableView: UITableView, cellForRowAt i
Not sure , whether this can Resolve your issue or not , but having consuming so much time finally i found the answer why CollectionView delgate method not gets called when it is embed inside TableView :
we basically use these two :
UICollectionViewDataSource
UICollectionViewDelegate
but forget to conform this : UICollectionViewDelegateFlowLayout
After conforming this (UICollectionViewDelegateFlowLayout) did solve my issue .
Hope it will solve other issue too. Feel free to comment and share your feedback. Thanks.