I am using a basic iPad Master Table Application that uses portrait orientation only. I wish to stop the masterviewcontroller from appearing when you swipe right (making ac
This is a new feature of UISplitViewController
that was introduced in iOS 5.1.
In order to disable this feature, they also implemented a new property called presentsWithGesture
to turn it on and off.
Apple highly recommends that you leave it on as people will grow to expect it to work this way, but if you must disable it, somewhere in your code you will need to add this:
self.splitViewController.presentsWithGesture = NO;
Or, if you are creating the splitViewController manually then just set the presentsWithGesture
to NO.