プロジェクトに2つのUITableViewがあり、次のメソッドを使用して1つのテーブルにカスタムヘッダーを指定しています。
- (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
if(tableView.tag == 3)
{
SectionInfo *array = [self.sectionInfoArray objectAtIndex:section];
if (!array.sectionView)
{
NSString *title = array.groupdeck.groupTitle;
array.sectionView = [[SectionView alloc] initWithFrame:CGRectMake(0, 0, tblData.bounds.size.width, 45) WithTitle:title Section:section delegate:self];
}
return array.sectionView;
}
else{
return 0;
}
return 0;
}
これは、次のようなタグ3を使用してテーブルにヘッダーを与えています。
しかし、それは他のテーブルにもデフォルトのヘッダーを与えていますreturn 0
。
私は何が欠けていますか?