亚洲免费乱码视频,日韩 欧美 国产 动漫 一区,97在线观看免费视频播国产,中文字幕亚洲图片

      1. <legend id="ppnor"></legend>

      2. 
        
        <sup id="ppnor"><input id="ppnor"></input></sup>
        <s id="ppnor"></s>

        開(kāi)發(fā)IOS關(guān)于子UIViewController和父UIViewController相互調(diào)用方法

        字號(hào):


            今天在做iphone開(kāi)發(fā)時(shí)碰到了一個(gè)常用的需求,即在一個(gè)viewController中添加另外一個(gè)viewController,同時(shí)能保證這兩個(gè)ViewController之間能夠相互交互且相互調(diào)用方法和函數(shù),在網(wǎng)上查了很多資料,很多開(kāi)發(fā)者說(shuō)需要使用objective-c變態(tài)的 delegate,可是我感覺(jué)delegate是使用在兩個(gè)同級(jí)之間的UIView比較好,至于能不能使用在父子關(guān)系而且是 UIVeiwController我也不太清楚,也沒(méi)有親自實(shí)驗(yàn)過(guò),通過(guò)查看SDK的API及其他資料我使用了自己的方法實(shí)現(xiàn)了我想要的需求,但是我不知道我的這種方法會(huì)不會(huì)有致命性的問(wèn)題,或者會(huì)不會(huì)有很大的弊端,如果有高人存在的話還望指點(diǎn)一下,我只是一個(gè)初學(xué)者,下面我將我的方法貼上來(lái):
            首先,定義兩個(gè)UIVeiwController,姑且先命名為ViewControllerParent(父容器)和ViewControllChild(子容器)吧,我們可以通過(guò)UIView的
            insertSubview方法將子容器添加到父容器中,這點(diǎn)在這里先不用說(shuō)了
            其次,我們先來(lái)看一下通過(guò)父容器調(diào)用子容器中的方法及函數(shù),我先在子容器ViewControllChild和父容器ViewControllerParent中分別寫(xiě)了如下方法:
            //該方法是彈出一個(gè)警告框
            -(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一定已經(jīng)定義了ViewControllChild,如下:
            @synthesize ViewControllChild;
            if (self.ViewControllChild==nil) {
            ViewControllChild *ViewControll=[[ViewControllChild alloc] initWithNibName:@"ViewControllChild" bundle:nil];
            self.ViewControllChild=ViewControll;
            [ViewControll release];
            }
            所以當(dāng)父容器調(diào)用子容器的方法只需要做下面一步即可:
            [self.ViewControllChild AlertWindow:@"我是從子容器中彈出來(lái)的"];
            這就實(shí)現(xiàn)了父容器調(diào)用子容器中方法;
            最后,看一下如何在子容器中調(diào)用父容器的方法,我的思路是這樣的,在insertSubview時(shí)我設(shè)置該子容器的父Controller,最后在子容器中通過(guò)父Controller來(lái)調(diào)用方法,因此我在子容器ViewControllChild中添加了一個(gè)這樣的方法:
            //設(shè)置當(dāng)前窗口的父容器
            -(void)SetParentView:(UIViewController *)viewController{
            [self setParentViewController:viewController];
            }
            在ViewControllerParent實(shí)現(xiàn)insertSubview前加入下邊代碼:
            [self.ViewControllChild SetParentView:self];
            該代碼實(shí)現(xiàn)了設(shè)置父容器
            這樣在子容器ViewControllChild中通過(guò)以下代碼就可以調(diào)用父容器的方法或者函數(shù)了:
            [self.parentViewController AlertWindow:@"我是從父容器中彈出來(lái)的"];
            以上便是實(shí)現(xiàn)ViewController相互交互的方法和思路,如果有什么錯(cuò)誤或者弊端還希望大家能夠提出來(lái)我們共同探討