`
啸笑天
  • 浏览: 3461319 次
  • 性别: Icon_minigender_1
  • 来自: China
社区版块
存档分类
最新评论

loadNibNamed

 
阅读更多

1loadNibNamed方法:

-(NSArray *)loadNibNamed:(NSString *)name owner:(id)owner options:(NSDictionary *)options

参数:

namenib文件的名称

owner指定name参数所指代的nib文件的File's Owner

options:当nib文件开始时,需要的数据

返回值:返回符合对象的数组。

例子:初始化一个View

CustomCell *cell=(CustomCell *)[tableView dequeueReusableCellWithIdentifier:CustomCellTableIdentifier];

if (cell==nil) {

NSArray *nib=[[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self options:nil];

cell=[nib objectAtIndex:0];// 因为返回的是数组

}

在这个时候生成后会让引用计数器变为1,但是需要注意得,owner:self ,在owner自己dealloc得时候,系统会自动帮你将你自定义view引用计数器-1得。

特别注意:

loadNibNamed:owner:options: 这个函数会返回一个nib的数组。不过,在iPhone2.1包括以后的版本,这个数组的第一个元素,即nib[0]表示的就是除了File‘s Owner File Responder后的第一个东西。在iPhon2.1之前的版本,nib[0]File's Ownernib[1]才是除了File‘s Owner File Responder后的第一个东西。

 

FOR EXAMPLE

一个继承uiview的类:


1

xibFile‘s Ownerclass设置为SBVI,连接Outlets。则调用[[NSBundle mainBundle]loadNibNamed:@"SBVI" owner:sbviClass options:nil]即可完成sbviClass中的outlet对象初始化。()

此做法可以用于使用自定义方法(initWithSB:(NSString *)name;)创建SBVI对象,并使用xib文件初始化SBVIsubviews此时:

 
 
2

这里的View代表着SBVI对象的subviews

 

而平时我关联xib的方法是:


 图
3

这里的Manage View代表的是ManageView对象本身。

不在File‘s Owner中关联Outlets,在objects一栏中创建ManageView设置他的class为要创建的类型( 这里是ManageView),然后关联他的Outlets,不同于上面的在File's Owner中关联,而是在Objects中关联。这样调用[[NSBundle mainBundle]loadNibNamed:@"ManageView" owner:self options:nil]这里的owner参数就无所谓了,随便设置,(猜测)因为我的xib文件中没有对File‘s OwnerOutlets进行关联。所以这句[[NSBundle mainBundle]loadNibNamed:@"ManageView" owner:self options:nil]是一次失败的尝试,它生成了对象但是没有成功赋给别人。所以我需要先保存这些对象即使用数组对象接收:NSArray *nib=[[NSBundle mainBundle] loadNibNamed:@"ManageView" owner:self options:nil];数组中的元素是图3Objects一栏中的元素,注意,这里并没有包含ManageView中的节点元素,所以Objects个数是1,即nib数组的个数是1,且[nib objectAtIndex:0]即是图3中的Manage View。此时写manageView =[[nib objectAtIndex:0] retain];xibObjects中的对象赋给manageView()

 

 btw:

http://blog.csdn.net/theonezh/article/details/7780495

http://tiny4cocoa.com/thread-2818-1-1.html

 

 

 

 

 

 

 

  • 大小: 6.7 KB
  • 大小: 8.5 KB
  • 大小: 16.2 KB
分享到:
评论
1 楼 ldx117182975 2013-06-04  
看到你写的东西,终于搞定了,纠结了我一天,结果是链在file's owner了。。。

相关推荐

    ios-MCTableView.zip

    MCtCell * cell = [[[NSBundle mainBundle]loadNibNamed:@"Order" owner:self options:nil]objectAtIndex:0]; cell.title.text = @"区头"; MCtCell * cell1 = [[[NSBundle mainBundle]loadNibNamed:@...

    ios-datePickerView.zip

    self.datePicker =[[[NSBundle mainBundle] loadNibNamed:@"DatePickerView" owner:self options:0] lastObject]; self.datePicker.frame =CGRectMake(0, self.view.frame.size.height-260, self.view.frame.size...

    利用xib自定义cell 的创建使用

    NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"CustomTableViewCell" owner:self options:nil]; for (id currentObject in topLevelObjects) { if ([currentObject isKindOfClass:...

    ios 一个窗口使用多个xib

    在iOS中,通常通过NSBundle的`loadNibNamed:owner:options:`方法来加载XIB文件。这个方法会根据XIB文件中的outlet连接将UI元素实例化,并将它们赋值给owner对象的相应属性。通常,owner是一个UIViewController的实例...

    自定义UIView子类

    [[NSBundle mainBundle] loadNibNamed:@"JXCustomView" owner:self options:nil]; } return self; } ``` 3. 如果你还需要支持用代码创建实例,可以添加这个初始化方法: ```objc - (instancetype)initWithFrame:...

    iOS通过xib自定义cell

    let cell = Bundle.main.loadNibNamed("CustomCell", owner: self, options: nil)?.first as! CustomCell // 配置cell的内容 cell.titleLabel.text = "标题" cell.imageView.image = UIImage(named: "image") ...

    iOS自定义控件开发梳理总结

    这通常通过`loadNibNamed:owner:options:`方法完成,将xib内容添加到父视图中。同样,可以通过暴露公共属性和方法来定制控件的行为。 无论选择哪种方式,自定义控件的关键在于理解其生命周期和布局机制。`...

    自定义AlretVIew,使用xib文件定义View

    guard let viewFromNib = Bundle.main.loadNibNamed("CustomAlertView", owner: self, options: nil)?.first as? UIView else { fatalError("Failed to load nib file") } addSubview(viewFromNib) viewFromNib...

    UITableView优化技巧

    cell = (ContacterTableCell*)[[[NSBundle mainBundle] loadNibNamed:@"ContacterTableCell" owner:self options:nil] lastObject]; } NSDictionary* dict = self.dataList[indexPath.row]; [cell ...

    swift scrollview xib 用法

    if let contentView = Bundle.main.loadNibNamed("ScrollViewDemo", owner: self, options: nil)?.first as? UIView { scrollView.addSubview(contentView) // 设置contentView的约束 } } ``` 通过以上步骤,...

    iOS实现手势解锁操作

    return [[NSBundle mainBundle] loadNibNamed:@"MYblockView" owner:nil options:nil].lastObject; } // 在控制器中添加九宫格视图 MYblockView *blockView = [MYblockView lockView]; blockView.center = self....

    XIB选项中中添加自定义属性

    return bundle.loadNibNamed("CustomImageView", owner: self, options: nil)?.first as! CustomImageView } ``` 然后在需要使用CustomImageView的地方调用此方法即可。 总结一下,通过在Swift中创建自定义视图类...

    IOS开发UITableViewCell自定义那点事.pdf

    NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self options:nil]; for (id object in nib) { if ([object isKindOfClass:[UITableViewCell class]]) { cell = (UITableViewCell *)...

    Mac OS X Cocoa Programming-5

    - `+(BOOL)loadNibNamed:(NSString*)name owner:(id)owner;`:从指定名称的nib文件中加载对象。 - `-(NSString*)pathForResource:(NSString*)name ofType:(NSString*)type;`:获取资源的路径。 通过以上内容的...

    Storyboard与xib跳转

    guard let viewControllerFromNib = Bundle.main.loadNibNamed(xibName, owner: self, options: nil)?.first as? YourViewControllerClass else { fatalError("Failed to instantiate \(xibName)") } self.present...

    UITableView自定义Cell-XIB.zip

    let cell = Bundle.main.loadNibNamed("CustomTableViewCell", owner: self, options: nil)?.first as! CustomTableViewCell // 配置Cell的内容 cell.titleLabel.text = "这是标题" cell.imageView.image = ...

    自定义封装分享页面弹框

    let shareView = Bundle.main.loadNibNamed("CustomShareView", owner: self, options: nil)?.first as! CustomShareView view.addSubview(shareView) shareView.frame = // 设置合适的显示位置和大小 ``` 2. ...

    iphone NSBundle 详解

    BOOL successful = [NSBundle loadNibNamed:@"About" owner:someObject]; ``` 在这个例子中,`someObject`会被设置为nib文件的`File's Owner`,所有与`File's Owner`连接的outlet和action都将指向这个对象。 总的...

    ipad横竖屏切换解决方案

    NSArray *arrayContentView =[[NSBundle mainBundle] loadNibNamed:@"ArticleView" owner:self options:nil]; rightView=[arrayContentView objectAtIndex:0]; [self addSubview:rightView]; } return self; } ...

    使用framework实现动态模块更新

    `NSBundle`提供了一系列方法,如`loadNibNamed:owner:options:`和`loadLibraryAtPath:error:`,用于在运行时加载指定的资源或库。 2. **Category和Extension**:Objective-C的Category机制允许我们在不修改原有类...

Global site tag (gtag.js) - Google Analytics