icepat/ICETutorial

Question: Can this be used to switch multiple views? If so any note on implementation?

Closed this issue · 4 comments

Question: Can this be used to switch multiple views? If so any note on implementation?

Hi.

Could you give me more informations about what you want to do ?
Switching between multiple views ? How ? and why ?

I have different views lets say list of movies, tv shows, music etc. So each image in your example will represent a view (ie., movies view, tv shows view, music view). I want to be able to swipe between them within one viewcontroller

This component will not be efficient about swiping ViewControllers (they will stay in the memory).
You can do that really easily with an UIPageViewController (but without the cross fade animation) :
- Create a new Project with XCode and choose "Page-Based Application", build and run.

The code is really easy to understand.
I'll release a custom component about that in the next 2 weeks.
I'll keep you in touch.

@icepat Thanks a lot. The UIPageViewController worked just fine. I'm looking forward to your custom component.