我想在我的UITableView
.
所以我正在做的就是这样:
NSMutableArray *arrayOfCells = [[NSMutableArray alloc] init];
for(int i = 0 ; i < 4 ; i++)
{
CustomCell *cell = [[CustomCell alloc] init:myText];
[arrayOfCells addObject:cell];
}
[table insertRowsAtIndexPaths:arrayOfCells withRowAnimation:UITableViewRowAnimationTop];
但插入行返回此错误:
*由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“-[CustomCell compare:]: unrecognized selector sent to instance 0x1cdebfb0”
知道为什么吗?谢谢你的帮助。