1

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に配置するにはどうすればよいですか?

4

1 に答える 1

3
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 2;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 5;
}

これで、テーブルビューは、それぞれ5行の2つのセクションを想定し、それらを描画しようとします。次に、cellForRowAtIndexPath:

- (UITableViewCell *)tableView:(UITableView *)tableView
         cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSUInteger actualIndex = indexPath.row;
    for(int i = 1; i < indexPath.section; ++i)
    {
        actualIndex += [self tableView:tableView 
                               numberOfRowsInSection:i];
    }

    // you can use the below switch statement to return
    // different styled cells depending on the section
    switch(indexPath.section)
    {
         case 1: // prepare and return cell as normal
         default:
             break;

         case 2: // return alternative cell type
             break;
    }
}

上記のロジックは次のようactualIndexになります。

  • セクション1、行1からXは、indexPath.rowを変更せずに返します
  • セクション2、行1からYは、X+indexPath.rowを返します
  • セクション3、行1からZは、X + Y+indexPath.rowを返します
  • 任意の数のセクションにスケーラブル

テーブルセルを支えるアイテムの基になる配列(または他のフラットコンテナクラス)がある場合、これにより、それらのアイテムを使用してテーブルビューの複数のセクションに入力できます。

于 2011-10-28T01:19:34.533 に答える