标签:
存放数据
的对象UIView
的类initWithFrame
方法中添加子控件
layoutSubViews
(子控件布局)中设置子控件的frame
步骤
UIView
的类xib
文件(文件名最好跟控件类名一样)
xib文件编译成功后就是nib文件
如果bundle mainbundle的参数是nil,默认去mainbundle中找 NSArray *views = [[NSBundle mainBundle] loadNibNamed:@"xib文件名" owner:nil option:nil];
方法2
UINib*nib = [UINib nibWithNibName:@"xib文件名" bundle:nil]; NSArray *views = [nib instantiateWithOwner:nil option:nil];
NSBundle *bundle = [NSBundle mainBundle]; NSString *path = [bundle pathForResource:@"shops" ofType:@"plist"];
objc _shops = [NSArray arrayWithContentsOfFile:path];
plist的文件名不能叫做“info”、“Info”之类的
添加plist等文件资源的时候,一定要勾选Destination:copy items if needed/Added folders:Create groups/Add to targets:非test项目
标签:
原文地址:http://www.cnblogs.com/HMJ-29/p/4758657.html