zoukankan      html  css  js  c++  java
  • xib、stroyboard加载view、viewController

    1、Storyboard加载

    - (void)addButtonDidClickedAction:(UIButton *)sender{
    
        NSLog(@"%s,%d", __FUNCTION__,__LINE__);
        
        UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"main" bundle:nil];
        BCCAddJizhangViewController *addJizhangVC = [storyboard instantiateViewControllerWithIdentifier:@"BCCAddJizhangViewController"];
        addJizhangVC.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
        addJizhangVC.delegaete = self;
        [self presentViewController:addJizhangVC animated:YES completion:nil];
    }
    

     2、 代码加载xib---view

    NSArray *nibContents = [[NSBundle mainBundle] loadNibNamed:@"BCCJiZhangTitleView" owner:nil options:nil];
        BCCJiZhangTitleView *titleView = [nibContents firstObject];
    

     3、代码加载xib---viewController

    BCCMingxiCellDetailedViewController *mxVC = [[[NSBundle mainBundle] loadNibNamed:@"BCCMingxiCellDetailedViewController" owner:nil options:nil] lastObject];
    
  • 相关阅读:
    SSH异常
    jquery效果摘要
    js随笔
    html随笔
    demo小样
    SVG图标
    jQuery笔记
    html / css学习笔记-3
    angular 学习笔记
    ng-route使用笔记
  • 原文地址:https://www.cnblogs.com/bachl/p/4808364.html
Copyright © 2011-2022 走看看