0

我正在尝试根据单元格的类型在单元格上设置不同的图像。每个部分都有不同类型的单元格。至少有两种类型,比如座位图中有座位,所以图例有可用座位、已预订、残疾人座位和选定座位。我没有得到的是如何识别细胞并相应地为它们分配图像。我得到总座位加上残疾人座位。例如,这里有残疾人座位,我总共有 20 个座位,我连续显示 9 个座位,所以将生成三排,分别有 9,9 和 2 个座位,我已经完成到 27 个,这样所有三排都坐满了座位,那 7 个额外的座位是残疾人座位。我现在该如何管理这些。如果有任何不清楚的地方,请随时询问。

这是我到目前为止所尝试的。

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
NSLog(@"vals count:%d", [arrSeats count]);
for(int i=0; i<[arrLevels count]; i++)
{
    if(section == i)
    {
        int v;
        NSString *cnt = [NSString stringWithFormat:@"%@",[arrTot objectAtIndex:i]];
        v = [cnt intValue];
        if(v<=9)
        {
            return 9;
        }
        else{
       int numOfRow = v/9; //2
        if(v % 9 > 0)
            numOfRow +=1;  //2+1 = 3
       int c = numOfRow*9;
        return c;
        } 
    }
}
return 1;
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
UICollectionViewCell *cell = [self.collectionView dequeueReusableCellWithReuseIdentifier:@"Cell" forIndexPath:indexPath];

int v;
NSString *cnt = [NSString stringWithFormat:@"%@",[arrTot objectAtIndex:indexPath.section]];
v = [cnt intValue];
if(v < 9)
{
    if(cell.selected){
        cell.contentView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"yellow_seat.png"]];  // highlight selection
    }
    else
    {
        cell.contentView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"blue_s.png"]]; // Default color
    }
}else{
    int numOfRow = v/9; //2
    if(v % 9 > 0)
        numOfRow +=1;  //2+1 = 3
    int c = numOfRow*9;
    int get = c-v;
    for(int i=0; i<get; i++)
    {
    cell.contentView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"blank_seat.png"]];
    }
}

return cell;
}
4

1 回答 1

1

UIColoectionView 我们得到 indexPath ,它给出了单元格的部分和项目编号。所以检查 indexPath.row。如果小于 20,请检查 cell.selected。如果大于 20,则为空白。我写了一些代码。请检查正确的逻辑

int v;
NSString *cnt = [NSString stringWithFormat:@"%@",[arrTot objectAtIndex:indexPath.section]];
v = [cnt intValue];  
if(indexPath.row < v)
{


if(v < 9)
{
    if(cell.selected){
        cell.contentView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"yellow_seat.png"]];  // highlight selection
    }
    else
    {
        cell.contentView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"blue_s.png"]]; // Default color
    }
}

}
else
{
cell.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"blank_seat.png"]];

}
于 2013-05-23T11:05:53.703 回答