I'm building an app display photo as grid with collection view in Swift
I'm using two storyboards, one with collectionview for photo grid. one storyboard for zoom in photo.
And what i want when click on 1 photo to zoom in and can swipe left - right to go to next / previous item.
The question is what is the best way to do ?
Add one more collection view on detail storyboard and clone data from photo grid storyboard? use gesture to swipe left - right to select next - prev cell?
Or i can reuse collection view from photo grid storyboard on detail storyboard?
or any other way?
I'm new with ios app. Many tks.