I have a UICollectionViewController (with a navigation controller) and i want to show an image in a Cell that 'pushes' to a normal ViewController (different by every image). How do i do that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
Seem you want to build photo gallery by UICollectionView. If use storyBoard, use segue
If use nib: inside didSelectItemAtIndexPath, use self.navigationController push.
Sample code from Apple: https://developer.apple.com/library/ios/#samplecode/CollectionView-Simple/Introduction/Intro.html CollecionView tutorial: http://www.raywenderlich.com/22324/beginning-uicollectionview-in-ios-6-part-12 |
|||
|
|
