如果我add custom uitableView sectionheader using storyboard我得到這個錯誤AX ERROR: Could not find my mock parent, most likely I am stale.
這個錯誤是什麼意思,我該如何解決它?標題代碼:與故事板自定義tableview部分標題並得到錯誤?
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
static NSString *cellID = @"sectionHeaderID";
UITableViewCell *headerview = [tableView dequeueReusableCellWithIdentifier:cellID];
return headerview;
}
請張貼您的部分標題代碼。 –
我已經添加了我的代碼 – akin