如何将值从tableview传递到collectionview

时间:2014-09-11 07:08:06

标签: ios objective-c uicollectionview

我使用SwReveal视图控制器将值从表视图传递到集合视图控制器。当我在集合视图中单击一个单元格时,我存储了集合视图单元格的索引路径。但是当我选择一个表并将值传递给索引路径集合视图时。单元格未显示该值。它是null ...这是我的代码

-(void)viewWillAppear:(BOOL)animated{
    text=seltext;
    NSLog(@"text %@",text);

 // HERE I AM GETTING VALUES FROM TABLE VIEW CONTROLLER

    self.displayindex=Viewindex;
    NSLog(@"self dispaly %@",Viewindex);

  // HERE I AM GETTING INDEX PATH OF SELECTED COLLECTION CELL

    Cell *cells = (Cell *)[collectionData cellForItemAtIndexPath: self.displayindex];
    cells.subjectLabel.text=@"djhfkjdshfjkhd";
    cells.cellView.backgroundColor=[UIColor greenColor];
    NSLog(@"cell is %@",cells);
    NSLog(@"text %@",text);

// CELL IS NULL HERE AND NOTHING IS DISPLAYING EVEN IF I PASS THE CELL FRO ITEM INDEXPATH

        }




- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    // we're going to use a custom UICollectionViewCell, which will hold subject and room number
    Cell *myCell = [collectionData dequeueReusableCellWithReuseIdentifier:@"TableCell"



                                                             forIndexPath:indexPath];
    if ((indexPath.row == 20) ||  (indexPath.row == 21)  || ( indexPath.row == 23)  ||  ( indexPath.row == 24))
    {
        myCell.hidden=YES;
    }




   // if (indexPath.row < 20 || indexPath.row == 22  )
 if (indexPath.row < 10 || (indexPath.row >14 && indexPath.row <20) ||indexPath.row ==22)
{


    if (indexPath.row == 0) {
       NSArray *Object=  [[jsonData valueForKey:@"TimeTabledPeriods"]objectAtIndex:0];


        //myCell.roomLabel.text = [NSString stringWithFormat:@"{%ld,%ld}", (long)indexPath.section ,  (long)indexPath.row];
        myCell.roomLabel.text= [NSString stringWithFormat:@"Room: %@", [Object valueForKey:@"RoomDescription"]];

        myCell.subjectLabel.text =  [Object valueForKey:@"SubjectDescription"];

       // myCell.cellView.backgroundColor= [UIColor grayColor];
        [myCell.redXbuttonOutlet setTag:indexPath.row];
        [myCell.LearningChoiceYellowOutlet setHidden:YES];


        [myCell.redXbuttonOutlet addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpInside];

    }
   else  (indexPath.row == 1) {

        NSArray *Object=  [[jsonData valueForKey:@"TimeTabledPeriods"]objectAtIndex:3];
       NSLog(@"objectATIndex 3 %@",Object);


       //myCell.roomLabel.text = [NSString stringWithFormat:@"{%ld,%ld}", (long)indexPath.section ,  (long)indexPath.row];
        myCell.roomLabel.text= [NSString stringWithFormat:@"Room: %@", [Object valueForKey:@"RoomDescription"]];

        myCell.subjectLabel.text =  [Object valueForKey:@"SubjectDescription"];
        //myCell.cellView.backgroundColor= [UIColor grayColor];
        [myCell.redXbuttonOutlet setTag:indexPath.row];
       [myCell.LearningChoiceYellowOutlet setHidden:YES];
        [myCell.redXbuttonOutlet addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpInside];
      // ..... some more code here just like above
    }


-(void)buttonPressed:(id)sender
{

        NSLog(@"tag number is = %d",[sender tag]);
        NSLog(@"Button");


//Storing index path when cancel Button is clicked
        deletindexpath = [NSIndexPath indexPathForRow:[sender tag] inSection:0];
    _appDFel.appindex=deletindexpath;

        NSLog(@" _appDFel.appindex %@", _appDFel.appindex);


        alert =[[UIAlertView alloc]initWithTitle:@"Delete session" message:@"Do you want to delete this session" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
        alert.delegate=self;
        [alert show];

    }




- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
    NSLog(@"indexpath %@",deletindexpath);
    if (deletindexpath!=nil) {

//enabling SWReveal view conttroller after cancel button is clicked        

        Cell *cells = (Cell *)[collectionData cellForItemAtIndexPath:deletindexpath];

        NSLog(@"cell %@",cells.subjectLabel.text);
        NSString *textString=cells.subjectLabel.text;
        _appDFel.TextString=textString;
        cells.subjectLabel.text=@"NOSession";
        cells.cellView.backgroundColor=[UIColor redColor];
        [cells.redXbuttonOutlet removeFromSuperview];
        NSLog(@"swiping is done here");
        [self fetchinfOfData];
        [self.view addGestureRecognizer:self.revealViewController.panGestureRecognizer];
        //[self performSegueWithIdentifier:@"SwipeLeftSegue" sender:nil];

           }

}

1 个答案:

答案 0 :(得分:4)

在我的头脑中,我说你的手机不存在,你需要分配/初始化它或dequeueWithReuseIdentifier

此外,您正在使用&#34; Cell&#34;创建你的单元格,而不是UICollectionViewCell;除非您使用名为Cell

的自定义单元格,否则这可能会成为一个问题

如果这没有帮助,您可以在说明中添加更多代码吗? cellforrow和数据传递方法。