私は3つの UIViewController を持っています:A、B、C
AからBに行きました
BからCに行きました
Bを介さずにCからAに戻るにはどうすればよいですか?
//in a.m
B* b =[B alloc] init];
[self presentModalViewController:b animated:YES];
[b release];
//in b.m
C* c=[C alloc] init];
[self presentModalViewController:c animated YES];
[c release];