ストーリーボードを使用してカスタム 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;
}