我想为tableview的每个单元格设置动画。因此,如果我选择表格的一个单元格,那么只有该单元格会缩放并且看起来像翻转动画。
我有一些代码。但是如果我选择它,那么所有的表都会被翻转。不仅仅是一个细胞。
在这里,代码如下。
-(void)tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath
{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
[tableView deselectRowAtIndexPath:indexPath : YES ];
[UIView transitionFromView:cell toView:checkProjectView duration:1.0f options:UIViewAnimationOptionTransitionFlipFromLeft completion:NULL];
[UIView commitAnimations];
}
我该如何实施?
我在这个示例中有 2 个视图。请帮我。