Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:]
这个错误时由于你返回的cell是空的,
MyAlbumThirdCell *cell = [tableView dequeueReusableCellWithIdentifier:@"ONE"];
if (cell == nil)
{
cell = [[NSBundle mainBundle] loadNibNamed:@"MyAlbumThirdCell" owner:nil options:nil][0];
}
return cell;