1

我在单元格上添加了切换按钮,但同时我希望我的单元格不应该在选择时突出显示或禁用选择。我确实禁用了用户交互属性,但现在我也无法更改单元格的位置。这是我在 Cell 上添加 Switch 按钮的操作。

UISwitch* switchFB = [[UISwitch alloc] initWithFrame:CGRectMake(227, 8, 79, 27)];
cell.textLabel.text=@"Facebook";
        cell.userInteractionEnabled=NO;
        cell.accessoryView = switchFB;

现在单元格没有选择,但我也不能改变开关的位置。提前致谢。干杯。

4

3 回答 3

3
cell.userInteractionEnabled=NO;

不要使用它而不是使用以下:

cell.selectionStyle = UITableViewCellSelectionStyleNone;

此行将帮助您切换到工作,但单元格不会被选中。

于 2013-03-01T11:38:07.253 回答
2

您可以通过像@Ann 所说的将单元格选择样式设置为 none 来禁用单元格选择。

cell.selectionStyle = UITableViewCellSelectionStyleNone;

UISwitch *switchView = [[UISwitch alloc] initWithFrame:CGRectZero];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
cell.accessoryView = switchView;
[switchView setOn:YES animated:NO];
[switchView addTarget:self action:@selector(switchChanged:) forControlEvents:UIControlEventValueChanged];

- (void) switchChanged:(id)sender {
    UISwitch* switchControl = sender;
    NSLog( @"The switch is %@", switchControl.on ? @"ON" : @"OFF" );
}
于 2013-03-01T13:44:32.010 回答
0
UISwitch* switchFB = [[UISwitch alloc] initWithFrame:CGRectMake(227, 8, 79, 27)];
cell.textLabel.text=@"Facebook";

//cell.userInteractionEnabled=NO;

[cell.contentView addSubview: switchFB ];
cell.selectionStyle= UITableViewCellSelectionStyleNone;

将 UISwitch 添加到cell.contentView

于 2013-03-01T11:39:55.657 回答