0

我有一个自定义 UITableViewCell 类,每个单元格都有一个我给它的 UIImageView。

我想要做的就是在进入编辑模式时淡出这个图像,并在退出编辑模式时淡出它。

4

2 回答 2

1
- (void)tableView:(UITableView *)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath {
//detect editing mode
    for (UITableViewCell *cell in self.tableView.visibleRows) { // loop through the visible cells and animate their imageViews

         [UIView animateWithDuration:1.0
                 delay:0
                 animations: ^{ cell.imageView.alpha = 0.5; }
                 completion: ^(BOOL finished) { cell.imageView.alpha = 1.0; }
         }];
    }

}
于 2012-04-04T11:39:29.133 回答
0

在您的客户单元类中编写以下方法

- (void)setEditing:(BOOL)editing animated:(BOOL)animated{
     [super setEditing:editing animated:animated];
     if (editing) {
   PUT YOUR fade animation code here
     }  

}

于 2012-04-04T11:50:14.183 回答