How to add a checkbox to a user table with a list of tables?

I want to create a custom checkbox in my custom UITableViewCell. I used the following path in UITableViewCell, but did not find it necessary. I need it inside fromcellForRowAtIndexPath

- (void)awakeFromNib {
    // Initialization code
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    [super setSelected:selected animated:animated];

 }

- (IBAction)ActionBtnSelect:(id)sender {

    if ([[UIImage imageNamed:@"checkbox.png"] isEqual:BtnCheckBox.currentImage] || [[UIImage imageNamed:@"uncheckbox.png"] isEqual:BtnCheckBox.currentImage]) {
        // do something


        if (!bool_Select) {

            [BtnCheckBox setImage:[UIImage imageNamed:@"checkbox.png"] forState:UIControlStateNormal];
            bool_Select =YES;

        }
        else  if (bool_Select) {
            //NSLog(@"check box untick");

            [BtnCheckBox setImage:[UIImage imageNamed:@"uncheckbox.png"] forState:UIControlStateNormal];
            bool_Select =NO;

        }

    }else{

        if (!bool_Select) {

            [BtnCheckBox setImage:[UIImage imageNamed:@"checked.png"] forState:UIControlStateNormal];
            bool_Select =YES;

        }
        else  if (bool_Select) {
            //NSLog(@"check box untick");

            [BtnCheckBox setImage:[UIImage imageNamed:@"unchecked.png"] forState:UIControlStateNormal];
            bool_Select =NO;

        }



    }
}

enter image description here

I want to do this as shown below using the tag

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{---------------------------------

cell.BtnCheckBox.tag = indexPath.row;
[cell.BtnCheckBox addTarget:self action:@selector(ActionSingleSelect:) forControlEvents:UIControlEventTouchUpInside];

}

-(void)ActionSingleSelect:(UIButton*)button
{
}
0
source share
1 answer
cell.btn = [[UIButton alloc]init];

cell.btn.tag=indexPath.row;
[cell.btn addTarget:self action:@selector(ActionSingleSelect:) forControlEvents:UIControlEventTouchUpInside];
0
source

All Articles