1

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

2 に答える 2

5

実際、pedro.m にリンクした投稿のコメントを見ると、可能な解決策が得られます。彼は contentView と呼ぶセルにサブビューを追加し、それを返しました。

私がしたことは少し簡単でした:

 - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    static NSString *cellID = @"sectionHeaderID";
    UITableViewCell *headerview = [tableView dequeueReusableCellWithIdentifier:cellID];
    return headerview.contentView;
}

これでエラーが修正されました。

于 2013-09-11T10:58:36.893 に答える