zoukankan      html  css  js  c++  java
  • childViewController 小计

    设置childViewcontroller   

    Unbalanced calls to begin/end appearance transitions for

    以上报错 需要添加 

    transitionFromViewController 方法完成与否的判断 跳转没有完成就往下一个childviewcontroller 跳转 会出现黑屏等问题。
    self.ganZhi_vc = [board instantiateViewControllerWithIdentifier:@"HDGanZhiViewController"];
        [self addChildViewController:self.ganZhi_vc];
        
        self.data_vc = [board instantiateViewControllerWithIdentifier:@"HDDataViewController"];
        [self addChildViewController:self.data_vc];
        
        self.map_vc = [board instantiateViewControllerWithIdentifier:@"HDMapViewController"];
        [self addChildViewController:self.map_vc];
        
        self.code_vc = [board instantiateViewControllerWithIdentifier:@"HDCodeViewController"];
        [self addChildViewController:self.code_vc];
        
        [self.view addSubview:self.root_vc.view];
        [self.root_vc didMoveToParentViewController:self];
        _currentViewController = self.root_vc;

    界面跳转

    -(void)changeViewControllerWith:(UIViewController *)temp
    {

    if (_transitioning) {

    
    

            return;

    
    

        }

    
    

        else

    
    

        {

    
    

            if (_currentViewController != temp) {

    
    

                [self transitionFromViewController:_currentViewController toViewController:temp duration:0 options:UIViewAnimationOptionTransitionCrossDissolve animations:nil completion:^(BOOL finished) {

    
    

                    _transitioning = NO;

    
    

                }];

    
    

                _currentViewController = temp;

    
    

            }

    
    
    
    
    

        }

    
        
    }
  • 相关阅读:
    7. ZooKeeper的stat结构
    6. ZooKeeper访问控制列表
    5. 监视和ZooKeeper操作
    4. ZooKeeper 基本操作
    3.Apache ZooKeeper数据模型
    Eclipse安装Activiti Designer插件
    Javascript Canvas验证码
    Tomcat9配置SSL连接
    JAVA将异常的堆栈信息转成String
    SpringBoot2静态资料访问
  • 原文地址:https://www.cnblogs.com/ceasar/p/5264292.html
Copyright © 2011-2022 走看看