由于未捕获的异常终止应用' NSInvalidArgumentException',原因:' - [UITableViewCell tabletitle]: 运行模拟器
时出错- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString * cellItem = @"sample";
TableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellItem forIndexPath:indexPath];
cell.tabletitle.text=[cararray objectAtIndex:indexPath.row];
return cell;
}
这里cararray是一个数组,我在视图didload中给出它,
表标题是我在TableViewCell类中给出的标签名称,我把这个标签放在原型单元格中但是在这里我无法将标签链接到该原型..
@property (strong, nonatomic)IBOutlet UILabel *tabletitle;
请告诉解决方案.. 还有一件事我使用TabView应用程序,我在FirstViewController中编辑(即)我将所有tableview和tableviewcell放在该视图控制器中..