iOS -[UITableView dequeueReusableCellWithIdentifier:forIndexPath:]崩溃

Assertion failure in -[UITableView dequeueReusableCellWithIdentifier:forIndexPath:]

出现这个报错,注册cell应该放在最前面。


注册的cell的方法需要放在,self.tableView.separatorStyle  = UITableViewCellSeparatorStyleNone;前面

[self.tableView registerClass:[SelectionHotCell class] forCellReuseIdentifier:@"SelectionHotCell"];

self.tableView.separatorStyle  = UITableViewCellSeparatorStyleNone;

你可能感兴趣的:(iOS -[UITableView dequeueReusableCellWithIdentifier:forIndexPath:]崩溃)