我正在開發UISplitViewController
應用程序,Master
視圖嵌入到Navigation Controller
。ipad - UISplitViewController Master拆分的奇怪行爲
每次我在Master
Segue公司到一個新的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;
}
}
任何建議,我怎麼能解決呢?
三江源!一整天都在竊聽我 – DanielGrech