今天在做iphone開發時碰到了一個常用的需求,即在一個viewController中添加另外一個viewController,同時能保證這兩個ViewController之間能夠相互互動且相互調用方法和函數,在網上查了很多資料,很多開發人員說需要使用objective-c變態的 delegate,可是我感覺delegate是使用在兩個同級之間的UIView比較好,至於能不能使用在父子關係而且是 UIVeiwController我也不太清楚,也沒有親自實驗過,通過查看SDK的API及其他資料我使用了自己的方法實現了我想要的需求,但是我不知道我的這種方法會不會有致命性的問題,或者會不會有很大的弊端,如果有高人存在的話還望指點一下,我只是一個初學者,下面我將我的方法貼上來:
首先,定義兩個UIVeiwController,姑且先命名為ViewControllerParent(父容器)和ViewControllChild(子容器)吧,我們可以通過UIView的
insertSubview方法將子容器添加到父容器中,這點在這裡先不用說了
其次,我們先來看一下通過父容器調用子容器中的方法及函數,我先在子容器ViewControllChild和父容器ViewControllerParent中分別寫了如下方法:
//該方法是彈出一個警告框
-(void)AlertWindow:(NSString *)transValue{
UIAlertView *alertView=[[UIAlertView alloc] initWithTitle:transValue message:transValue delegate:self
cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alertView show];
[alertView release];
}
由於父容器ViewControllerParent要插入ViewControllChild,因此在ViewControllerParent一定已經定義了ViewControllChild,如下:
@synthesize ViewControllChild;
if (self.ViewControllChild==nil) {
ViewControllChild *ViewControll=[[ViewControllChild alloc] initWithNibName:@"ViewControllChild" bundle:nil];
self.ViewControllChild=ViewControll;
[ViewControll release];
}
所以當父容器調用子容器的方法只需要做下面一步即可:
[self.ViewControllChild AlertWindow:@"我是從子容器中彈出來的"];
這就實現了父容器調用子容器中方法;
最後,看一下如何在子容器中調用父容器的方法,我的思路是這樣的,在insertSubview時我設定該子容器的父Controller,最後在子容器中通過父Controller來調用方法,因此我在子容器ViewControllChild中添加了一個這樣的方法:
//設定當前視窗的父容器
-(void)SetParentView:(UIViewController *)viewController{
[self setParentViewController:viewController];
}
在ViewControllerParent實現insertSubview前加入下邊代碼:
[self.ViewControllChild SetParentView:self];
該代碼實現了設定父容器
這樣在子容器ViewControllChild中通過以下代碼就可以調用父容器的方法或者函數了:
[self.parentViewController AlertWindow:@"我是從父容器中彈出來的"];
以上便是實現ViewController相互互動的方法和思路,如果有什麼錯誤或者弊端還希望大家能夠提出來我們共同探討