我有这部分代码:
+ (id) cell
{
BaseXibCell * cell;
if ([[NSBundle mainBundle] pathForResource:[self xibName] ofType:@"nib"] != nil)
{
NSArray * nibObjects = [[NSBundle mainBundle] loadNibNamed: [self xibName] owner:self options:nil];
cell = [nibObjects objectAtIndex: [self nibIndex]];
return cell;
}
我需要从xib加载单元格,所以我有一个带路径的笔尖:
...iPhone Simulator/7.1/Applications/53C938B7-55B0-4836-8840-B15146C2DF44/AxEmpExample.app/AxDynamicListRecordStyleCell.nib
但是nibObjects
只包含一个绝对错误类的单元格:
Printing description of nibObjects:
AxDynamicListCell
AxDynamicListRecordStyleCell.xib
中的根单元格对象类设置为AxDynamicListRecordStyleCell
。
无法理解如何解决这个问题..有什么帮助吗?