如果我使用情节提要添加自定义 uitableView 部分标题,我会收到此错误AX ERROR: Could not find my mock parent, most likely I am stale.
此错误是什么意思,我该如何解决?标头代码:
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
static NSString *cellID = @"sectionHeaderID";
UITableViewCell *headerview = [tableView dequeueReusableCellWithIdentifier:cellID];
return headerview;
}