zoukankan      html  css  js  c++  java
  • 加载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开发
  • 相关阅读:
    Python学习第15天_模块
    Python学习第14天_文件读取写入
    Python学习第13天_练习(图书馆的创建)
    Python学习第12天_类
    Python学习第11天_参数
    Python学习第10天_函数
    Python学习第九天_模块的应用
    Android Bluetooth HIDL服务分析
    Mac下CLion配置Google GTest小结
    MacOS通过homebrew安装老版本的软件
  • 原文地址:https://www.cnblogs.com/luanmage/p/4626209.html
Copyright © 2011-2022 走看看