从笔尖加载错误的单元格

时间:2014-05-26 17:48:59

标签: ios objective-c uitableview xib nib

我有这部分代码:

+ (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

无法理解如何解决这个问题..有什么帮助吗?

0 个答案:

没有答案