标签:failed color ring style str xpath nsstring string 原因
检查原因1:是否已经注册cell
[self.tableView registerNib:[UINib nibWithNibName:NSStringFromClass([SendTeachNotiTableViewCell class]) bundle:nil] forCellReuseIdentifier:@"teachersend"];
检查原因2:cellForRowAtIndexPath 方法中cell是否为空 可能cell调用早了,导致cell为nil时无法赋值
if(cell==nil)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifierdata]
}
TableView报错 failed to obtain a cell from its dataSource
标签:failed color ring style str xpath nsstring string 原因
原文地址:http://www.cnblogs.com/justqi/p/6519657.html