あるセクションのヘッダーを返したいが、別のセクションのヘッダーは返したくない。
何を返しますか?
-(UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath{
if (indexPath.section == RDSectionRecipeDetail) {
/*create view here*/
return myView
}else{
//What to return when I dont want a view?
return ?;
}
}