我在单元格上添加了切换按钮,但同时我希望我的单元格在选择时不会突出显示或禁用选择。我禁用了用户交互属性,但现在我也不能更改单元格的位置。下面是我在Cell上添加Switch按钮的过程。
UISwitch* switchFB = [[UISwitch alloc] initWithFrame:CGRectMake(227, 8, 79, 27)];
cell.textLabel.text=@"Facebook";
cell.userInteractionEnabled=NO;
cell.accessoryView = switchFB;
现在单元格没有被选中,但是我也不能改变开关的位置。提前谢谢。干杯。
发布于 2013-03-01 11:38:07
cell.userInteractionEnabled=NO;
不要使用这个而不是使用下面的:
cell.selectionStyle = UITableViewCellSelectionStyleNone;
这行代码将帮助您切换到工作状态,但单元格不会被选中。
发布于 2013-03-01 13:44:32
您可以通过将单元格选择样式设置为none来禁用单元格选择,就像@Ann说的那样。
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-01 11:39:56
UISwitch* switchFB = [[UISwitch alloc] initWithFrame:CGRectMake(227, 8, 79, 27)];
cell.textLabel.text=@"Facebook";
//cell.userInteractionEnabled=NO;
[cell.contentView addSubview: switchFB ];
cell.selectionStyle= UITableViewCellSelectionStyleNone;
向cell.contentView
添加UISwitch
https://stackoverflow.com/questions/15156735
复制相似问题