uitableviewのインデックスごとにこのコードがあります
if (indexPath.row == 6){
UIImageView *blog = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"blog.png"]];
[cell setBackgroundView:blog];
UIImageView *selectedblog = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"blogSel.png"]];
cell.selectedBackgroundView=selectedblog;
cell.backgroundColor = [UIColor clearColor];
[[cell textLabel] setTextColor:[UIColor whiteColor]];
return cell;}
2つのセクションがあり、各セクションに5行あります。indexPath.row 1から5をセクション1に、indexPath.row 6から10をセクション2に配置するにはどうすればよいですか?