标签:
1.Xib文件的使用
NSArray*objs = [[NSBundlemainBundle] loadNibNamed:@"MJAppView"owner:nil options:nil];
这个方法会创建xib中的所有对象,并且将对象按顺序放到objs数组中
(如果xib如右图所示,那么objs数组中依次会有3个对象:1个UIView、1个UIButton、1个UISwitch)
bundle参数可以为nil,默认就是main bundle
UINib *nib= [UINibnibWithNibName:@"MJAppView"bundle:[NSBundlemainBundle]];
NSArray*objs = [nibinstantiateWithOwner:niloptions:nil];
标签:
原文地址:http://blog.csdn.net/neng18/article/details/42194177