如何在UITableViewCell目标c中添加复选框按钮

时间:2018-10-23 05:49:12

标签: ios objective-c iphone

我在这里知道这个问题的很多答案,但我无法为所有人提供适当的含义。

我想选择按钮而不是单元格。默认情况下,按钮是未选中的,并且如果将某个单击或按下的按钮比该按钮更改为选中(仅按下按钮),则不是全部。

我提到了我的屏幕截图和代码,其中包含button,数组的值(设备的名称)以及带有切换按钮的内容

代码

-(IBAction)SelectAppliance:(id)sender {
    UIButton *btn=(UIButton*)sender;
    NSLog(@"button tag is :%ld",(long)btn.tag);
    NSLog(@"click button"); 
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return [_arrApplnc count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"SceneTableViewCell";

    SceneTableViewCell *cell = (SceneTableViewCell*)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    if(checked) { 
         [cell.btnRadio setBackgroundImage:[UIImage imageNamed:@"checked"] forState:UIControlStateNormal];
    } else {
         [cell.btnRadio setBackgroundImage:[UIImage imageNamed:@"unchecked"] forState:UIControlStateNormal];
    }

    cell.btnRadio.tag = indexPath.row;
    cell.lblName.text =[[_arrApplnc valueForKey:@"applianceName"] objectAtIndex:indexPath.row];
    [cell.btnRadio addTarget:self action:@selector(SelectAppliance:) forControlEvents:UIControlEventTouchUpInside];
    return cell;
}

UI Screenshort

1 个答案:

答案 0 :(得分:1)

如果您要在单元格中使用按钮,我建议您使用委托模式,以便单元格本身可以处理按钮的点击并将消息发送给视图控制器。

SceneTableViewCell.h

@protocol SceneTableViewCellDelegate <NSObject>
@optional
    - (void)checkBoxTapped:(SceneTableViewCell *)cell;
@end

@interface SceneTableViewCell : NSObject
    @property (nonatomic, weak) id <SceneTableViewCellDelegate> delegate;
@end

SceneTableViewCell.m

-(IBAction)checkboxTapped:(UIButton *)sender {
    [self.delegate checkBoxTapped:self];
}

在您的 ViewController.m

@property (nonatomic,strong) NSMutableIndexSet *checkedRows;

- (void) viewDidLoad {
    self.checkedRows = [[NSMutableIndexSet alloc]init];

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"SceneTableViewCell";

    SceneTableViewCell *cell = (SceneTableViewCell*)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
        cell.delegate = self
    }


    if([self.checkedRows contains:indexPath.row]) { 
         [cell.btnRadio setBackgroundImage:[UIImage imageNamed:@"checked"] forState:UIControlStateNormal];
    } else {
         [cell.btnRadio setBackgroundImage:[UIImage imageNamed:@"unchecked"] forState:UIControlStateNormal];
    }

    cell.lblName.text =[[_arrApplnc valueForKey:@"applianceName"] objectAtIndex:indexPath.row];

    return cell;
}

- (void) checkBoxTapped:(SceneTableView Cell *)cell {

    NSIndexPath *indexPath = [tableView indexPathForCell:cell];
    if ([self.checkedRows contains: indexPath.row]) {
        [self.checkedRows removeIndex: indexPath.row];
    } else {
        [self.checkedRows addIndex: indexPath.row];
    }

    [tableView reloadRowsAt:@[indexPath], withRowAnimation: UITableViewRowAnimationAutomatic];
}

另一种方法是简单地在单元格中使用UIImageView而不是UIButton并使用didSelect处理程序来切换检查状态。这样,用户可以轻按单元中的任何位置。