Master Table Application

前端 未结 1 1706
野的像风
野的像风 2020-12-21 15:45

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

相关标签:
1条回答
  • 2020-12-21 16:20

    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.

    0 讨论(0)
提交回复
热议问题