the title says it all, i usually open ViewControllers like this
ListingViewController *listingView = [[ListingViewController alloc]init];
[self.navigationController pushViewController:listingView animated:YES];
but on this particular class thats a custom UICollectionView cell i want to launch a new controller based on the cell thats clicked. how can i do that ?