我已经构建了一个带有两个单元格的自定义UITableView。在一个单元格中,我添加了一个UIImageView,另一个是UILabel。当我用UILabel点击单元格时,弹出一个不需要的键盘,闪烁的光标。我已经检查以确保我没有使用重复的重用标识符。为什么会这样?我以为UILabels不会打电话给键盘。我怎么能摆脱这个?有没有办法通过像
这样的委托方法访问单元格- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath
???
提前感谢您的帮助。这是我的代码:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:qRViewCellIdentifier];
NSUInteger row = [indexPath row];
if (cell == nil)
{
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:qRViewCellIdentifier] autorelease];
if (row == kQRRowIndex)
{
CGRect imageRect = CGRectMake(10,10.0,255.0,255.0);
UIImageView *qRImageView = [[[UIImageView alloc] initWithFrame:imageRect] autorelease];
qRImageView.tag = row;
[cell.contentView addSubview:qRImageView];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
else
{
CGRect labelRect = CGRectMake(10,10.0,255.0,25.0);
UILabel *fastPayLabel = [[UITextField alloc] initWithFrame:labelRect];
fastPayLabel.tag = row;
[cell.contentView addSubview:fastPayLabel];
}
}
if (row == kQRRowIndex)
{
UIImageView *qRImageView = (UIImageView *)[cell viewWithTag:kQRRowIndex];
qRImageView.image = [[UserManager sharedUserManager] qRImage];
}
else
{
NSString *message = [NSString stringWithString:@"Enable Fast Pay"];
UILabel *fastPayLabel = (UILabel *)[cell viewWithTag:kFastPayRowIndex];
fastPayLabel.textAlignment = UITextAlignmentCenter;
fastPayLabel.text = message;
fastPayLabel.font = [UIFont boldSystemFontOfSize:20];
}
return cell;
}
答案 0 :(得分:3)
伙计,你这里有一个错字:UILabel *fastPayLabel = [[UITextField alloc] initWithFrame:labelRect];
。
您实际上是在分配UITextField ... =)