Split view controller must be root view controller
问题 Whenever I try to present a UISplitViewController modally the application crashes. Thus it must allways be the root view controller. Can anyone confirm that? 回答1: From the Apple iPad Programming Guide: The split view controller’s view should always be installed as the root view of your application window. You should never present a split view inside of a navigation or tab bar interface. So yes, you cannot present a split view outside of your main application window (that includes modally).