我正在使用 Xcode 4.6.1 为 >iOS 5.0 版本开发应用程序。
该应用程序只是显示从服务器端获取、保存在数据库中并允许其用户填写的问卷。
为了显示问题,我有一个UIScrollView
并且我在pagingEnabled 模式下使用它。我有三种问题选择类型,分别checkbox
是radio button
和textfield
。对于 UI 控件,我创建了CheckBoxButton
简单RadioButton
地从UIButton
. 我通过更改背景图像设置了选择属性。所以每一页都包含一个问题并checkboxes | radio buttons
根据选择计数。如果选择计数为 4,则显示 4 个复选框。
如果问题和选择不适合页面,我将创建一个UITableView
并将其添加UIScrollView
为子视图。我没有使用,而是UITableView
尝试使用,UIScrollView
但它让事情变得更糟。所以,这不是一个真正的选择。要创建UITableViewCell
,我正在使用此代码。
static NSString *cellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if(cell == nil)
{
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
cell.selectionStyle = UITableViewCellSelectionStyleNone ;
}
QuestionChoice *currentChoice = [[[[_questionArray objectAtIndex:currentQuestionIndex] choices] allObjects ] objectAtIndex:indexPath.row -1 ];
CheckBoxButton *checkBox = [[CheckBoxButton alloc] initWithXValue:20 yValue:0 tag:0];
[cell addSubview:checkBox];
UIFont *aeroSmall = [UIFont fontWithName:@"Aero" size:22.0f];
NSString *choiceText = currentChoice.choiceText;
CRTLabel *choiceLabel = [[CRTLabel alloc] initWithFrame:CGRectMake(80, 0, 700, 44) andText:choiceText font:aeroSmall tag:0];
[cell addSubview:choiceLabel];
我知道如果屏幕上不存在一个单元格,它就不存在。我的问题就在于此。假设我已经选中了第四个复选框并向上滚动,因此第四个单元格不再显示。当我向下滚动时,将使用上面的代码重新创建第四个单元格。我的问题是它是用旧状态创建的。这意味着当我在向上滚动之前检查时,它会在检查中重新创建。
这怎么可能 ?我错过了什么?我没有使用任何缓存机制。