我正在玩我的应用程序,我正在快速切换UISwitch(谁能抗拒?)。所以,我真的快速切换了10-15次,一个数组应该包含我切换的表视图单元格中的数据,要么有相同单元格的额外副本,要么只有一个副本(正确的情况)或根本没有数据。如果它以正常速度切换,该应用程序正常工作。
我很确定这种情况不会真的发生在我的用户身上,但我仍然很好奇为什么会发生这种情况。
谢谢, Teja公司
编辑:添加代码。每次切换开关时都会调用此方法。
-(void)saveOptionChanged:(id) sender
{
UISwitch *sw = (UISwitch *) sender;
//int tag = current.tag;
BOOL status = (BOOL) [sw isOn];
NSInteger tag = sw.tag;
NSInteger row1 = tag%1000;
NSInteger section1 = (tag - row1)/1000;
DiagDetails *temp = [preferences getDiagElementAt:section1 row:row1];
temp.ICD9Code= [temp.ICD9Code stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
temp.ICD9Desc= [temp.ICD9Desc stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
NSLog(@"Adding %@ - %@",temp.ICD9Code, temp.ICD9Desc);
NSLog(@"tag = %ld, row = %ld, section = %ld",tag,row1,section1);
if(status) {
BOOL returnVal = YES;
returnVal = [currentPatient addICD9Code:temp];
if(!returnVal) {
UIAlertView *error = [[UIAlertView alloc] initWithTitle:@"Diagnosis add error" message:@"" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[error show];
[error release];
[sw setOn:NO];
}
}
else {
DiagDetails *temp = [preferences getDiagElementAt:section1 row:row1];
[currentPatient removeICD9Code:temp.ICD9Code];
}
}
答案 0 :(得分:0)
如果我不得不猜测,你发现事件的速度太快以至于它们可能会合并或被跳过,所以如果你根据调用事件处理程序的次数隐式设置状态,你可能会失去同步。 (相反,您应该在事件处理程序内明确确定UISwitch
的状态 - 开启或关闭。)您必须显示更多代码才能确定。至少UISwitch
的事件处理程序代码更改了状态事件。