A→B→C→D→A
A はルートディレクトリではありませんが、alloc なしで D に戻る必要があります。この場合、次のメソッドを使用できます
[self.navigationController PopToViewController: [ self.navigationController.viewControllers objectAtIndex: ([self.navigationController.viewControllers count] -4)]アニメーション:YES];
D は A に値を渡す必要があるため、通知は非常に便利です
通知値を渡す (1 人の送信者、多数の受信者、代理契約は不要、システム通知センター notificationCenter を通じて直接作業)
値転送ページで
まずシステム通知センターを取得します
NSNotificationCenter * center = [NSNotificationCenterdefaultCenter] ] ;
NSNotification * Notice = [NSNotification notificationWithName:@"regisonName" object:[NSString stringWithFormat:@"%@",[self.dataArray[indexPath.row] objectForKey:@"name"]]];
/ / 最初のパラメータは通知の名前であり、この名前を使用してオブジェクトを検索する場合に備えて名前を付けます。 2 番目のパラメータは渡す値と受け取る値です。値はオブジェクトでなければなりません[センターポストノット化:通知]; ];
// 最初のパラメータ: 2 番目のパラメータ (メソッド名、動作する作業) ) 4 番目のパラメータ (システム、今は気にしないでください)
- (void)setRegionTitle:(NSNotification *)notify{
NSString * object = [通知オブジェクト];[_regionButton setTitle:object forState:UIControlStateNormal];
[ _regionButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal]; }