iOS如何隨意的穿插跳躍,push來pop去

主題思想:如A、B、C、D 四個視圖控制器。

 

想要在 A push B 後, B 在push 到 D ,而後從 D pop 到 C ,在從 C pop 的A數組

解決方法以下:

 

1.假如此時在 A 控制器下,想要到 push 到 B, 能夠這樣寫spa

 

複製代碼

[self.navigationController pushViewController: B :YES];

這時 
self.navigationController.viewControllers
 中按順序含有 [A,B]

複製代碼

 

 

2.此時已經到 B 控制器下了, 接下來是 push 到 D, 能夠這樣寫rem

 

[self.navigationController pushViewController: D :YES];

 

 

這時self.navigationController.viewControllers中按順序含有 [A,B,D],接下來很重要,如何想從 D pop 到 C, 看數組[A,B,D] 中壓根就沒有C 該如何pop 到C呢?it

 

這時就須要對這個數組進行修改,將C 加入進去io

 

因而 你會以下寫:

 

[self.navigationController.viewControllers addObject:C];

 

 

發現報錯,這是由於 self.navigationController.viewControllers 是不可變數組,沒辦法了,咱們只好轉換一下了:table

 

NSMutableArray*tempMarr =[NSMutableArrayarrayWithArray:self.navigationController.viewControllers];

 

此時再加入C 就容易多了,咦,聰明的你會發現從 D pop C 不能直接將 C直接 addObject;方法

 

固然,我會這樣作:

 

[tempMarr insertObject:C atIndex:tempMarr.count- 2];

 

 

這時候 tempMarr 是這樣的 [A,B,C,D],但是 要想 從 C pop 到 A ,數組中就不能有 Bim

 

就須要 將 tempMarr 變成 [A,C,D] ,至於怎麼變,你比我懂得多,img

 

懂得思考的同窗會發現 這時的 self.navigationController.viewControllers 依然是 [A,B,D], 不用急,不用怕 navigationController 有這樣一個方法, 能夠搞定,以下:tab

 

[self.navigationController setViewControllers:tempMarr animated:YES];

 

 

有的同窗會說,這不是直接把 B 替換 成 C 嗎?

 

看上去是這樣,但是跳轉的時機,時機,時機重要的事情說三遍,還有視圖的切換,切換,切換。。。

 

此時還在 B 控制器中,這些處理過程都是在 B 中處理的 , 也必須是 B 執行了 push 到 D 方法後,也就是說

 

[self.navigationController pushViewController:D animated:YES];

 

 

以後 進行的 數組處理;

 

附加代碼:

 

在B 控制器中處理:

 

複製代碼

-(void)pushTest {

    [self.navigationController pushViewController:D animated:YES];   
    NSMutableArray*tempMarr = [NSMutableArrayarrayWithArray : self.navigationController.viewControllers];

    [tempMarr insertObject:C atIndex:tempMarr.count- 2];

    [tempMarr removeObject:self]; //此時 的self 就是指 B ,由於在 B 中呢

    [self.navigationController setViewControllers:tempMarr animated:YES];

}
相關文章
相關標籤/搜索