国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 系統(tǒng) > iOS > 正文

iOS addChildViewController方法

2019-11-09 16:10:18
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

單獨(dú)使用 addSubview 去加viewController的view發(fā)現(xiàn)有許多問(wèn)題,主要是使用了代理方法的。查了下發(fā)現(xiàn)問(wèn)題所在。 蘋果新的API增加了addChildViewController方法,并且希望我們?cè)谑褂胊ddSubview時(shí),同時(shí)調(diào)用[self addChildViewController:child]方法將sub view對(duì)應(yīng)的viewController也加到當(dāng)前ViewController的管理中。 對(duì)于那些當(dāng)前暫時(shí)不需要顯示的subview,只通過(guò)addChildViewController把subViewController加進(jìn)去;需要顯示時(shí)再調(diào)用transitionFromViewController方法。將其添加進(jìn)入底層的ViewController中。

//點(diǎn)擊切換頁(yè)面 - (void)didClick:(UIButton *)button { // 點(diǎn)擊處于當(dāng)前頁(yè)面的按鈕,直接跳出 其他頁(yè)面 [self replaceController:self.currentVC newController:self.firstVC];

}

// 切換各個(gè)標(biāo)簽內(nèi)容 - (void)replaceController:(UIViewController )oldController newController:(UIViewController )newController { /** * 著重介紹一下它 * transitionFromViewController:toViewController:duration:options:animations:completion: * fromViewController 當(dāng)前顯示在父視圖控制器中的子視圖控制器 * toViewController 將要顯示的姿勢(shì)圖控制器 * duration 動(dòng)畫時(shí)間(這個(gè)屬性,old friend 了 O(∩_∩)O) * options 動(dòng)畫效果(漸變,從下往上等等,具體查看API) * animations 轉(zhuǎn)換過(guò)程中得動(dòng)畫 * completion 轉(zhuǎn)換完成 */

[self addChildViewController:newController]; [self transitionFromViewController:oldController toViewController:newController duration:2.0 options:UIViewAnimationOptionTransitionCrossDissolve animations:nil completion:^(BOOL finished) { if (finished) { //移除oldController,但在removeFromParentViewController:方法前不會(huì)調(diào)用willMoveToParentViewController:nil 方法,所以需要顯示調(diào)用 [newController didMoveToParentViewController:self]; [oldController willMoveToParentViewController:nil]; [oldController removeFromParentViewController]; self.currentVC = newController; }else{ self.currentVC = oldController; } }];

}


發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 黄山市| 德格县| 南充市| 贵阳市| 峨山| 汉沽区| 长子县| 池州市| 龙泉市| 马公市| 项城市| 石首市| 凉山| 霍山县| 大竹县| 浑源县| 郑州市| 古蔺县| 呼图壁县| 龙江县| 申扎县| 墨竹工卡县| 乌拉特中旗| 利津县| 望谟县| 石首市| 井陉县| 同心县| 寿宁县| 潼南县| 新巴尔虎右旗| 庄河市| 莱芜市| 罗平县| 张家川| 青岛市| 元江| 宾阳县| 锡林浩特市| 荃湾区| 清涧县|