美文网首页
addChildViewController

addChildViewController

作者: IreneWu | 来源:发表于2017-11-21 14:36 被阅读3次
/************ 添加 ***********/

[self addChildViewController: _currentVC];

// [_currentVC willMoveToParentViewController: self];(自动调用  省略)

//[_currentVC didMoveToParentViewController: self]; (可省略)

/************ 移除 ***********/

[_currentVC willMoveToParentViewController: nil];

[_currentVC removeFromParentViewController];

//[_currentVC didMoveToParentViewController: nil]; (自动调用 省略)

相关文章

网友评论

      本文标题:addChildViewController

      本文链接:https://www.haomeiwen.com/subject/nthwvxtx.html