一个点击cell的动画效果

今天给大家介绍一个关于cell的比较炫酷的点击动画效果,具体效果请看下面

image

代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//点击状态
-(void)tableView:(UITableView *)tableView didHighlightRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.2];
cell.transform = CGAffineTransformMakeScale(0.87, 0.87);//cell进行缩放
[UIView commitAnimations];
}
//复原
-(void)tableView:(UITableView *)tableView didUnhighlightRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.2];
cell.transform = CGAffineTransformMakeScale(1, 1);
[UIView commitAnimations];
}