我已經嘗試過失敗:如何關閉我打開視圖控制器「替換」 Segue公司
1. [self dismissViewControllerAnimated:YES completion:Nil];
2. [[self parentViewController] dismissViewControllerAnimated:YES
completion:Nil];
3. //from the parent view controller using a delegate
-(void)closeReplaceController
{
DLog(@"closeReplaceController");
[self dismissViewControllerAnimated:YES completion:Nil];
}
沒有設法使用「替換」segue做預期的行爲。最終它使用隱藏的導航欄和「popViewController」方法使用「push」segue關閉viewcontroller。 – pvllnspk