I want to work with to 2 popovers:
The first popover "popover1" is started from my main ViewController. If the user clicks "next" the popover1 one should be closed and another popover "popover2" should be presented.
Is this possible? I couldn't find a way to dismiss the popover1 after presenting popover2. Thanks a lot for your help!
I found a simple solution how I could reach my goal:
Instead of using 2 different viewController, I only used one viewController with two views: view1 and view2. If I start my popOver, view1 is visible and view2 is hidden. If the user clicks "next", view1 gets hidden and view2 gets visible. That's how I built a litte dialog.
Thanks for your ideas!