presentsWithGestureを動作させることができないようです。表示される詳細ビューコントローラに基づいてオンとオフを切り替えることができる必要があります。
- (IBAction)disableGestures:(id)sender
{
AppDelegate *appDelegate = [UIApplication sharedApplication].delegate;
appDelegate.splitViewController.presentsWithGesture = NO;
NSLog(@"Disable Gestures!");
}
簡単なプロジェクトをまとめました(デフォルトのUISplitViewControllerテンプレートを使用): http ://www.filedropper.com/splitviewtest
これはpresentsWithGestureの使用目的ではありませんか?