0

我在数组中有动态值。我必须在一行中显示 4 个值,在另一行中显示剩余值。

例如。数组计数为 10。

第一行包含 1、2、3、4 第二行包含 5、6、7、8
第三行包含 9、10。

但我的问题是,我将 tableview 单元格设置为:

第一排:1,2,3,4 第二排:2,3,4,5 第三排:3,4,5,6

我正在尝试很多事情,但没有得到确切的灵魂。

索引路径处的行单元格:

if (rowcount % 4)
 {
     for (k=0; k<4; k++)
     {
       btnexpand = [[UIButton alloc] init];
       btnexpand = [UIButton buttonWithType:UIButtonTypeCustom];
       btnexpand.frame = CGRectMake(j, 5, 80, 40);
       [btnexpand setTitle:[NSString stringWithFormat:@"Step %d",[[[[appDelegate.array_proj objectAtIndex:indexPath.section] arr_task] objectAtIndex:indexPath.row - 1+k] taskid]] forState:UIControlStateNormal];


       [cell.contentView addSubview:btnexpand];

        j = j + 65;
       }
    }
    else
    {
       for (k=0; k<rowcount%4; k++)
        {
           btnexpand = [[UIButton alloc] init];
           btnexpand = [UIButton buttonWithType:UIButtonTypeCustom];
           btnexpand.frame = CGRectMake(j, 5, 80, 40);

            [btnexpand setTitle:[NSString stringWithFormat:@"Step %d",[[[[appDelegate.array_proj objectAtIndex:indexPath.section] arr_task] objectAtIndex:indexPath.row - 1+k] taskid]] forState:UIControlStateNormal];


             [cell.contentView addSubview:btnexpand];

              j = j + 65;
       }

}
4

1 回答 1

2

你可以这样做

int initialIndex = indexPath.row * 4;
for (int i=initialIndex ; i<initialIndex+4 && i< totalValues ; i++)
{
    //USE i for getting IndexValue


}
于 2013-03-28T14:02:26.063 回答