美文网首页
iOS 手动控制VC.view 生命周期

iOS 手动控制VC.view 生命周期

作者: ZCY_YAM | 来源:发表于2017-01-09 11:49 被阅读52次
    //该方法返回NO则childViewController不会自动viewWillAppear和viewWillDisappear对应的方法
    - (BOOL)shouldAutomaticallyForwardAppearanceMethods{ 
        return NO;
    }
    
    //viewWillAppear调用设置为YES,viewWillDisappear调用设置为NO
    [self.customChildViewController beginAppearanceTransition:YES animated:animated];
    //对应的DidAppear调用需要成对出现
    [self.customChildViewController endAppearanceTransition];
    

    当 shouldAutomaticallyForwardAppearanceMethods 返回NO 的时候 我们就可以手动调用 (viewWillAppear DidAppear)方法

    相关文章

      网友评论

          本文标题:iOS 手动控制VC.view 生命周期

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