開發IOS關於子UIViewController和父UIViewController相互調用方法

來源:互聯網
上載者:User

   今天在做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相互互動的方法和思路,如果有什麼錯誤或者弊端還希望大家能夠提出來我們共同探討

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.