美文网首页
iOS UIViewController 生命周期

iOS UIViewController 生命周期

作者: Smallwolf_JS | 来源:发表于2022-07-13 17:47 被阅读0次
    //该方法返回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 UIViewController 生命周期

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