私はUISplitViewController
アプリケーションを開発しています。Master
ビューはに埋め込まれてNavigation Controller
います。
Master
新しいものにセグエしてからGroupsViewController
「戻る」ボタンを押すたびにGroupsViewController
、画面の中央に移動し、全体SplitViewController
が上から垂直にそれを覆います。
横向きでのみ発生します。ポートレートでは、すべてが正常に機能します。
セグエはNavigationBarButton
からGroupsViewController
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([[segue identifier] isEqualToString:@"ShowGroupsSegue"])
{
GroupsViewController *groupsController = (GroupsViewController *)[segue destinationViewController];
groupsController.contactsdelegate = self;
}
}
どうすればそれを修正できますか?