ios编程新手。当我运行模拟器时,出现此错误。
由于未捕获的异常“NSInternalInconsistencyException”而终止应用程序,原因:“无法在包中加载 NIB:“NSBundle(已加载)”,名称为“cusCell”
这是我收到错误的那一行
static NSString *CellIdentifier = @"cusCell";
customCell *cell = (customCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
==> NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"cusCell" owner:self options:nil];
cell = [nib objectAtIndex:0];
}