• 加载storyboard和xib文件


        // 加载storyboard
        UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Two" bundle:nil];
        
        // 创建storyboard里面灰色的控制器
       //找到shtoryboard里面设置的初始控制器
    // UIViewController *vc = [storyboard instantiateInitialViewController];
      
      // 从storyboard里面找出绑定标识的控制器 MJTwoViewController *vc = [storyboard instantiateViewControllerWithIdentifier:@"pink"]; self.window.rootViewController = vc;

    2.通过xib加载


    //nib文件初始化

    - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; if (self) { // Custom initialization } return self; }
    //加载所有xib文件
    NSArray* objects = [[NSBundle mainBundle] loadNibNamed:nibName owner:self options:nil]

    //加载指定xib文件
    ContactsTableViewCell  *cell = [[[NSBundle mainBundle]loadNibNamed:@"ContactsTableViewCell" owner:nil options:nil] objectAtIndex:0]

     3.xib布局文件初始化的两种方法

    -(instancetype)initWithFrame:(CGRect)frame
    {
        self=[super initWithFrame:frame];
        if (self) {
    //NIb加载会把xib文件加载到内存中,读取快,经常使用的xib文件可以使用nib加载,
        //Bundle加载,每次会从磁盘上加载,效率会慢一点
    // self=[[[UINib nibWithNibName:@"MPListView" bundle:nil] instantiateWithOwner:self options:nil] lastObject]; self=[[[NSBundle mainBundle] loadNibNamed:@"MPListView" owner:self options:nil] objectAtIndex:0]; } return self; }

    但是如果你使用initWithNibName调入Nib时,awakeFromNib是不会被调用的。 

    IOS开发
  • 相关阅读:
    eaysui 引用 CSS和JS 文件
    在JSP 页面中 添加CSS 样式
    Spring Hello World
    jsp+jdbc
    eclipse插件开发:使用emf建模型时,需要注意模型的坐标和大小的保存
    eclipse插件开发:GEF 进阶: Viewer
    Asp.net之MsChart控件动态绑定温度曲线图
    根据图中的盲点坐标,弹出div层
    小结get和Post的区别
    使用JavaC编译一个Java文件
  • 原文地址:https://www.cnblogs.com/luanmage/p/4626209.html
Copyright © 2020-2023  润新知