1

我有自己的继承TableViewCell类。在我的单元格笔尖文件中,我在我的. (图片没有完全占据整个单元格区域,图片周围有空格) UITableViewCellTableViewCell

然后,我想实现一个触摸反馈功能,当用户触摸单元格中的图像时,该图像将被另一个图像替换。

我试图在tableView:didSelectRowAtIndexPath:方法中做到这一点:

- (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    //my TableViewCell   
    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];

    //New image to replace the current one
    UIImage* bg = [CCTheme imageNamed:@"green_btn_bg"];
    UIImageView* bgView = [[UIImageView alloc] initWithImage:bg];

    cell.selectedBackgroundView = bgView;
    ...

但它根本不起作用。那么,我该如何实现这个触摸反馈功能呢?那是当用户手指触摸单元格中的图像时,图像会变为另一个图像。

4

3 回答 3

0

在您的自定义类中创建一个UIImageView属性,然后从该属性而不是背景属性设置该属性上的图像。UITableViewCellIBOutletcellForRowAtIndexPath:

cell.yourCustomImageView.image = bgView;

或者将 UIImageView 添加到当前通用的 UITableViewCell 中,如下所示。

与您的当前单元格

[cell addSubview:bgView];
于 2013-04-25T15:09:09.560 回答
0
  • didSelectRowAtIndexPath:您必须首先更改您的数据模型(表明单元格的状态已更改)。
  • 你设置适当的图像 cellForRowAtIndexPath:。(即您检查状态是什么并提供正确的图像。)
  • 要更新单元格,请调用reloadRowsAtIndexPaths:

解释

您不应将单元格的状态存储在单元格的某些视图中。例如,如果不同的图像代表某种选择,则为表格视图提供数据的数组或其他数据结构应跟踪处于此状态的行。

每次必须重新生成单元格时,cellForRowAtIndexPath都会调用。(这可能是因为单元格变得可见,或者因为您明确更新了它。)这是检查状态信息并相应地显示单元格的最佳位置。

于 2013-04-25T14:13:16.997 回答
0

我建议将手势识别器连接到UIImageView自定义单元格的 init 方法中:

// Add recognizer for tappable image
UITapGestureRecognizer *tapRecognizer = [[UITapGestureRecognizer alloc]
                                         initWithTarget:self action:@selector(imageViewTapped:)];
[tapRecognizer setNumberOfTouchesRequired:1];
[tapRecognizer setDelegate:self];

self.tappableImageView.userInteractionEnabled = YES;
[self.tappableImageView addGestureRecognizer:tapRecognizer];

然后处理程序:

- (void)imageViewTapped:(id)sender {

    NSLog(@"image tapped");
    self.tappableImageView.image = [UIImage imageNamed:@"some_different_image.png"];
}

另外,不要忘记像这样装饰自定义单元格声明:

@interface CustomTableViewCell : UITableViewCell <UIGestureRecognizerDelegate>

在该cellForRowAtIndexPath:方法中,您需要确保您的 init 方法中的代码被触发以便tapRecognizer添加。

祝你好运!

[编辑]

根据您使用自定义 XIB 创建单元格的方式,您可能不需要它,但在我的情况下,我需要显式调用一个方法来初始化表格单元格中 UI 的状态。我这样做的initState方法是在自定义表格视图单元格上提供一种方法:

- (void)initState {

    // Do other things for state of the UI in table cell.

    // Add recognizer for tappable image
    UITapGestureRecognizer *tapRecognizer = [[UITapGestureRecognizer alloc]
                                         initWithTarget:self action:@selector(imageViewTapped:)];
    [tapRecognizer setNumberOfTouchesRequired:1];
    [tapRecognizer setDelegate:self];

    self.tappableImageView.userInteractionEnabled = YES;
    [self.tappableImageView addGestureRecognizer:tapRecognizer];
}

然后,cellForRowAtIndexPath我确保initState在创建表格单元格后调用它:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    CustomTableViewCell *cell = (CustomTableViewCell*)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) {

        UIViewController *temporaryController = [[UIViewController alloc] initWithNibName:@"CustomTableViewCell" bundle:nil];
        // Grab a pointer to the custom cell.
        cell = (CustomTableViewCell *)temporaryController.view;

        [cell initState];
    }

    return cell;

}
于 2013-04-25T16:32:30.387 回答