我有一个UITableView,其中包含一些包含UISwitches的单元格:
UISwitch* actSwitch = (UISwitch*)[cell viewWithTag: SWITCH_TAG];
[actSwitch addTarget: self
action: @selector(actSwitchChanged:)
forControlEvents: UIControlEventValueChanged];
BOOL value = [appSettings.lock_when_inactive boolValue];
[actSwitch setOn: value animated:NO];
我还想覆盖didSelectRowAtIndexPath:
方法来执行相应UISwitch的切换:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSString *cellType = [self typeOfCellForIndexPath:indexPath];
if ( cellType == @"CellWithSwitch" )
{
UISwitch* actSwitch = (UISwitch*)[[[self tableView] cellForRowAtIndexPath:indexPath ] viewWithTag: SWITCH_TAG];
BOOL value = [actSwitch isOn];
[actSwitch setOn:!value animated:YES]; // <-- HERE IS THE PROBLEM
[self actSwitchChanged: actSwitch];
}
else if ( cellType == @"CellWithoutSwitch" )
{
// other actions
}
}
在这两种情况下,要么直接点击UISwitch,要么点击单元格,它会更改状态并正确调用actSwitchChanged:
。
但是如果我点击单元格,我的UISwitch没有动画从一个状态到另一个状态的翻转,它只是在一瞬间改变它的状态。
所以[actSwitch setOn:!value animated:YES]
不足以告诉动画动画吗?
以下是我设置&amp;调用configure cell:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = nil;
NSString *EnabledCellIdentifier = [self typeOfCellForIndexPath:indexPath];
cell = [tableView dequeueReusableCellWithIdentifier:EnabledCellIdentifier];
if (cell == nil)
{
cell = [self cellForType:EnabledCellIdentifier];
}
[self cofigureCell:cell forIndexPath:indexPath];
return cell;
}
这是我配置单元格的方式:
- (void)cofigureCell:(UITableViewCell*)cell forIndexPath:(NSIndexPath*)indexPath {
switch ( indexPath.section )
{
case 0:
// not this
case 1:
{
switch ( indexPath.row )
{
case 0:
{
cell.textLabel.text = @"Limit passwords attempts";
UISwitch* actSwitch = (UISwitch*)[cell viewWithTag: SWITCH_TAG];
[actSwitch addTarget: self
action: @selector(actSwitchChanged:)
forControlEvents: UIControlEventValueChanged];
BOOL value = [appSettings.limit_password_attempts boolValue];
[actSwitch setOn: value animated:NO];
break;
}
//other rows of this section here are being configured
}
break;
}
case 2:
{
switch ( indexPath.row )
{
case 0:
{
cell.textLabel.text = @"Lock when inactive";
UISwitch* actSwitch = (UISwitch*)[cell viewWithTag: SWITCH_TAG];
[actSwitch addTarget: self
action: @selector(actSwitchChanged:)
forControlEvents: UIControlEventValueChanged];
BOOL value = [appSettings.lock_when_inactive boolValue];
[actSwitch setOn: value animated:NO];
break;
}
//other rows of this section here are being configured
}
break;
}
default:
break;
}
}
但是当我逐步调试并完成这一步时:
[actSwitch setOn:!value animated:YES]; // <-- HERE IS THE PROBLEM
actSwitch仅在[self actSwitchChanged: actSwitch];
更改数据模型并调用[self.tableView reloadData];
后才更改其状态
可能原因是我有两个带有UISwitch的单元格,并且它们之间存在一些冲突? 可能有更好的方法从单元格获取UISwitch然后我的代码?:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSString *cellType = [self typeOfCellForIndexPath:indexPath];
if ( cellType == @"CellWithSwitch" )
{
UISwitch* actSwitch = (UISwitch*)[[[self tableView] cellForRowAtIndexPath:indexPath ] viewWithTag: SWITCH_TAG];
BOOL value = [actSwitch isOn];
[actSwitch setOn:!value animated:YES]; // <-- HERE IS THE PROBLEM
[self actSwitchChanged: actSwitch];
}
else if ( cellType == @"CellWithoutSwitch" )
{
// other actions
}
}
答案 0 :(得分:5)
只需稍微调用你的actSwitchChanged函数:
UISwitch* actSwitch = (UISwitch*)[[[self tableView] cellForRowAtIndexPath:indexPath ] viewWithTag: SWITCH_TAG];
BOOL value = [actSwitch isOn];
[actSwitch setOn:!value animated:YES]; // <-- HERE IS THE PROBLEM
[self performSelector:@selector(actSwitchChanged:) withObject:actSwitch afterDelay:0.55];
答案 1 :(得分:0)
SWIFT 4
使用委托协议创建UITableViewCell子类。我添加了一个标题标签和一个开关,如下所示:
class UITableViewController: CellWithSwitchDelegate {
func didToggleSwitch(on: Bool) {
// This is the delegate function that's called when the switch is toggled
print("toggled switch")
}
}
在你的UITableViewController中添加委托方法,如下所示:
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let cell = tableView.cellForRow(at: indexPath) as! CellWithSwitchTableViewCell
let settingsSwitch = cell.toggleSwitch!
didToggleSwitch(on: !settingsSwitch.isOn)
settingsSwitch.setOn(!settingsSwitch.isOn, animated: true)
}
在你的UITableViewController中,在你的didSelectRowAtIndexPath中添加如下内容:
{{1}}