【发布时间】:2013-05-17 14:39:39
【问题描述】:
如果我 add custom uitableView sectionheader using storyboard 我收到此错误 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;
}
【问题讨论】:
-
请发布您的部分标题代码。
标签: iphone storyboard uitableview