Assertion failure in dequeueReusableCellWithIdentifier:forIndexPath:

1、直接原因,cellForRowAtIndexPath方法返回nil
2、注意如果一个viewcontroller两个tableview的话,在cellForRowAtIndexPath中你会发现,tableview的indexPath有问题。
3、在网络请求之前注意加上,[self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"Cell”];
4、注意网络请求,获取数据后再对tableview进行reloadData

你可能感兴趣的:(Assertion failure in dequeueReusableCellWithIdentifier:forIndexPath:)