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.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…