我正在尝试使用标签和单元标识符重新使用cellViews,但是只要重新使用单元格,下面的代码就会崩溃。我想我差不多了。任何人都可以看到错误吗?
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
const NSInteger BUTTON_TAG = 1001;
const NSInteger SWITCH_TAG = 1002;
const NSInteger TEXTFIELD_TAG = 1003;
NSString *CellIdentifier = @"";
if(indexPath.section == 2 && indexPath.row == 0)
CellIdentifier = @"Button";
else if (indexPath.section == 3)
CellIdentifier = @"Switch";
else
CellIdentifier = @"TextField";
UISwitch *switchView;
UITextField *textField;
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
if (CellIdentifier == @"TextField")
{
cell.selectionStyle = UITableViewCellSelectionStyleNone;
CGRect frame = CGRectInset([cell.contentView bounds], 70, 10);
textField = [[[UITextField alloc] initWithFrame:frame] autorelease];
textField.keyboardType = UIKeyboardTypeDefault;
textField.returnKeyType = UIReturnKeyDone;
textField.autocorrectionType = UITextAutocorrectionTypeNo;
textField.autocapitalizationType = UITextAutocapitalizationTypeNone;
textField.delegate = self;
cell.accessoryView = textField;
cell.tag = TEXTFIELD_TAG;
}
else if (CellIdentifier == @"Button")
{
cell.selectionStyle = UITableViewCellSelectionStyleBlue;
cell.textLabel.textAlignment = UITextAlignmentCenter;
cell.clipsToBounds=YES;
cell.tag = BUTTON_TAG;
}
else if (CellIdentifier == @"Switch")
{
cell.selectionStyle = UITableViewCellSelectionStyleNone;
switchView = [[[UISwitch alloc] initWithFrame:CGRectZero] autorelease];
cell.accessoryView = switchView;
cell.tag = SWITCH_TAG;
}
}
else
{
textField = (UITextField*)[cell viewWithTag:TEXTFIELD_TAG];
switchView = (UISwitch*)[cell viewWithTag:SWITCH_TAG];
}
崩溃日志
2012-02-22 14:50:08.352 ***[2304:207] -[UITableViewCell setSecureTextEntry:]: unrecognized selector sent to instance 0x6368270
2012-02-22 14:50:08.355 ***[2304:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UITableViewCell setSecureTextEntry:]: unrecognized selector sent to instance 0x6368270'
答案 0 :(得分:0)
除了注释的单元格分配行,您将.tag属性设置为单元格而不是文本字段和开关,这很可能是导致崩溃的原因。同时发布崩溃日志,以便我们看到应用程序究竟崩溃了什么。
答案 1 :(得分:0)
你不会说出崩溃是什么或提供回溯,但我立即看到的一个问题是你一直在做:
switchView = (UISwitch*)[cell viewWithTag:SWITCH_TAG];
对于所有回收的细胞,即使这三种类型中只有一种有switchView。
您也只为一种单元格设置TEXTFIELD_TAG
,但在访问所有类型的"再循环"时,请参考它。细胞
已编辑添加:我发现您已从控制台添加了例外。调用setSecureTextEntry
时会抛出异常。我在您复制的代码中的任何地方都看不到setSecureTextEntry
。粘贴到问题中,因此我建议在您的真实代码中查找setSecureTextEntry
以及在其被呼叫的任何地方,确保它UITextField
接收该呼叫而不是UITableViewCell
(可以是安全UITextField
生活的超级视图)。
答案 2 :(得分:0)
首先将新控件添加到contentView(或单元格)作为子视图,如下所示:
[cell.contentView addSubview:textField];
......等等其他观点。看看是否可以解决崩溃问题。
另外,正如@Eugene指出的那样,在单元格上设置标签并没有帮助。在您创建的视图上设置标记。 (虽然我怀疑这是你的崩溃背后)。