Xib

作者: 挖掘机 | 来源:发表于2016-02-15 18:14 被阅读115次

    Xib文件

        // 加载xib文件
        // Test.xib --编译--> Test.nib
        // 方式1
    //    NSArray *objs = [[NSBundle mainBundle] loadNibNamed:@"Test" owner:nil options:nil];
    //    [self.view addSubview:objs[1]];
        
        // 方式2
        // 一个UINib对象就代表一个xib文件
    //    UINib *nib = [UINib nibWithNibName:@"Test" bundle:[NSBundle mainBundle]];
        // 一般情况下,bundle参数传nil,默认就是mainBundle
    //    UINib *nib = [UINib nibWithNibName:@"Test" bundle:nil];
    //    NSArray *objs = [nib instantiateWithOwner:nil options:nil];
    //    [self.view addSubview:[objs lastObject]];
    
    
    
    

    相关文章

      网友评论

          本文标题:Xib

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