just wondering how I would go about implementing didSelectRowAtIndexPath or something similar into my app. I have a populated Table View with several dynamic cells and basi
Use the following code to select cell at '0' index programmatically for collectionView.
self.collectionView.reloadData() DispatchQueue.main.async { self.collectionView(self.collectionView, didSelectItemAt: IndexPath(item: 0, section: 0)) }