6

在此处输入图像描述在此处输入图像描述我在使用 GMGridView 时遇到了奇怪的问题。实际上我正在使用 GMGridview 来显示餐厅的桌子。如果我选择了 Table1(这意味着第一个单元格),它应该更改为 redColor(这意味着它是被占用的表格)。我这样做了,但我的问题是当我选择一个单元格 1(红色)时,无论我使用 GMGridview 的所有类中都显示红色。那是完全错误的,在另一个类中没有任何选择,它显示为选中的一个。

在下面的图片中,如果我选择了 1,则显示 7 也选择了.....

我的代码是

- (GMGridViewCell *)GMGridView:(GMGridView *)gridView cellForItemAtIndex:(NSInteger)index{



    CGSize size = [self GMGridView:gridView sizeForItemsInInterfaceOrientation:[[UIApplication 
sharedApplication] statusBarOrientation]];


    GMGridViewCell *cell = [gridView dequeueReusableCell];


    int isOccupied = [[[self.arrayOfoccupiedTables objectAtIndex:index] objectForKey:@"TStatus"] intValue];


    if (!cell)

    {

        cell = [[[GMGridViewCell alloc] init] autorelease];


        UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, size.width, size.height)];

        cell.contentView = view;

    }


    [[cell.contentView subviews] makeObjectsPerformSelector:@selector(removeFromSuperview)];


    UILabel *label = [[UILabel alloc] initWithFrame:cell.contentView.bounds];

    label.autoresizingMask = UIViewAutoresizingFlexibleWidth | 

UIViewAutoresizingFlexibleHeight;

    label.textAlignment = UITextAlignmentCenter;

    label.backgroundColor = [UIColor clearColor];

    label.font = [UIFont fontWithName:APPFONTLI size:22.0f];

    label.adjustsFontSizeToFitWidth = YES;



    if (isOccupied == 100001) {


        label.textColor = [UIColor whiteColor];

        label.highlightedTextColor = [UIColor blackColor];

        label.backgroundColor = [UIColor redColor];//redColor];

        //colorWithRed:43.0f/255.0f green:150.0f/255.0f blue:0.0f/255.0f alpha:1.0f];//GreenColor

        label.text  = [[self.filtredArray objectAtIndex:index] objectForKey:@"TableName"];


    }else if(isOccupied == 100002) {



        label.textColor = [UIColor whiteColor];

        label.highlightedTextColor = [UIColor blackColor];

        label.backgroundColor = [UIColor colorWithRed:43.0f/255.0f green:150.0f/255.0f 
blue:0.0f/255.0f alpha:1.0f];

        //colorWithRed:215.0f/255.0f green:215.0f/255.0f blue:0.0f/255.0f alpha:1.0f];//GreenColor

        label.text  = [[self.filtredArray objectAtIndex:index] objectForKey:@"TableName"];

    }

    else if(isOccupied == 100003) {

        label.textColor = [UIColor blackColor];

        label.highlightedTextColor = [UIColor whiteColor];

        label.backgroundColor = [UIColor colorWithRed:215.0f/255.0f green:215.0f/255.0f blue:0.0f/255.0f alpha:1.0f];// Yellow Color


        //colorWithRed:229.0f/255.0f green:229.0f/255.0f blue:229.0f/255.0f alpha:1.0f];//GrayColor

        label.text  = [[self.filtredArray objectAtIndex:index] objectForKey:@"TableName"];

    }
    [cell.contentView addSubview:label];
    return cell;
}

- (void)GMGridView:(GMGridView *)gridView didTapOnItemAtIndex:(NSInteger)position
{

  NSLog(@"Did tap at index %d", position);

    [[SoundManager sharedSoundManager] playSound:SELECTED];

    //[self performSelector:@selector(registerTableToTheServer:) withObject:nil afterDelay:0.2];

    [self registerTableToTheServer:[[self filtredArray] objectAtIndex:position]];

    NSInteger tableId   =  [[[[self filtredArray] objectAtIndex:position] objectForKey:@"Table_id"] intValue];

    [self createPlistWithTableId:tableId];

    [_gmGridView reloadData];
}

而且我正在重新加载 viewWillAppear 和 viewDidLoad 中的网格视图。我没有发现任何有用的东西。请帮帮我。

4

1 回答 1

6
- (GMGridViewCell *)GMGridView:(GMGridView *)gridView cellForItemAtIndex:(NSInteger)index{
    
    CGSize size = [self GMGridView:gridView sizeForItemsInInterfaceOrientation:[[UIApplication sharedApplication] statusBarOrientation]];
    
    GMGridViewCell *cell = [gridView dequeueReusableCell];
    int isOccupied = [[[self.arrayOfoccupiedTables objectAtIndex:index] objectForKey:@"TStatus"] intValue];

    if (!cell)  {
        cell = [[[GMGridViewCell alloc] init] autorelease];
             
        UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, size.width, size.height)];
        cell.contentView = view;
    }

   //TRY TO RELOAD THE MG_GRIDVIEW HERE
}
于 2012-10-25T13:08:09.670 回答