I have a app in which I have a PageViewController that shows it's pages on after another without the user doing anything. I want to totally block the user's acces. I have a back button that appears on the top after all of pages have been shown. But if I try to tap it ... it starts going through the pages again (it's in the area that you would usually tap to go to previous page).
So, does anyone have any idea how could I "remove" the gesture recognizers ?
I tried commenting the line :
self.view.gestureRecognizers = self.pageViewController.gestureRecognizers;
from RootViewController but it didn't work.