UITableViewCell无法添加子视图

时间:2014-11-30 17:31:11

标签: ios objective-c uitableview

我想在TableView单元格中添加一个Button。

一开始,我在故事板中使用了TableView及其单元格,它正在运行。

我从Storyboard中删除了TableView,以编程方式添加TableView,并在XIB中创建了单元格。

我这样做是为了在TableView显示和CollectionView显示之间切换。

然后,我使用相同的代码创建我想在CollectionViewCell和TableViewCell中显示的按钮。它适用于Collection,而不适用于Table。 我添加了checkBoxButton.backgroundColor = [UIColor blueColor];,但我看不到蓝色方块。

NSLog(@"Cell subviews before %i", [cell.contentView.subviews count]);

    UIButton *checkBoxButton = d[@"Button"];
    if(checkBoxButton){
        checkBoxButton.frame = CGRectMake(850,60, 50, 50);
        checkBoxButton.backgroundColor = [UIColor blueColor];
        [cell.contentView addSubview:checkBoxButton];
    }

NSLog(@"Cell subviews after %i", [cell.contentView.subviews count]);
    return cell;

我在单元格中有一个名为LIB_Nom的标签。如果我使用[LIB_Nom addSubview:checkBoxButton],则会出现该按钮。 (对于细胞的所有元素都相同。)

请帮助我,我咆哮了两个小时。谢谢:))

这是我的cellForRowAtIndexPath

        CellIdentifier = @"personne_Table";
        CELL_Personne_Table *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
        CLASS_Contact* unContact = [tab_Personnes objectAtIndex:[indexPath row]];
        NSDictionary* d = [self loadCellPersonne:indexPath];

        cell.LIB_Nom.text = d[@"Nom"];
        cell.LIB_Contact.text = d[@"Contact"];
        cell.LIB_Adresse.text = d[@"Adresse"];
        cell.LIB_Adresse_2.text = d[@"Adresse2"];
        cell.LIB_CP_Ville.text = d[@"CP_Ville"];
        cell.LIB_ID.text = d[@"ID"];
        cell.LIB_Tel_1.text = d[@"Tel"];
        cell.LIB_Tel_2.text = d[@"Tel_2"];
        cell.LIB_Email.text = d[@"Email"];
        cell.LIB_DateCreation.text = d[@"DateCreation"];
        cell.IMG_Rdv.hidden = [unContact Get_HideRdV];
        cell.IMG_Pays.image = d[@"IMG_Pays"];
        cell.IMG_Contact.image = d[@"IMG_Contact"];
        cell.LIB_Visite.text = d[@"Visite"];

        for(UIView* v in cell.subviews)
        {
            NSLog(@"Cell Subview %p", v);
        }
        UIButton *checkBoxButton = d[@"Button"];
        if(checkBoxButton){
            checkBoxButton.frame = CGRectMake(0,0, 50, 50);
            checkBoxButton.backgroundColor = [UIColor blueColor];

            NSLog(@"content View %p", cell.contentView);
            cell.contentView.backgroundColor = [UIColor redColor];
            [cell.contentView addSubview:checkBoxButton];
        }
        NSLog(@"-------------------");

        return cell;

在这里,我创建了Tableview

TABLE_Contacts = [[UITableView alloc] initWithFrame:f];
        TABLE_Contacts.backgroundColor = [UIColor clearColor];
        TABLE_Contacts.delegate = self;
        TABLE_Contacts.dataSource = self;
        [TABLE_Contacts registerNib:[UINib nibWithNibName:@"CELL_Personne_Table" bundle:nil] forCellReuseIdentifier:@"personne_Table"];
        [self.view addSubview:TABLE_Contacts];

1 个答案:

答案 0 :(得分:1)

试试这个:

  • 在您的xib中,创建您可能希望在运行时使用的所有子视图并隐藏它们。
  • 将它们放在contentView(在xib中)
  • 通过按住Ctrl键拖动到您的代码中,将它们连接到您的自定义单元格类中。
  • 在运行时,只需隐藏/取消隐藏相应的视图以响应操作。

这样,加载xib的过程会为您创建并挂钩所有内容。您需要做的就是使用collectionView注册xib。