私は立ち往生しています。私はメッセージを持つTableViewを持っています。選択すると、これらは削除され、ごみ箱に移動されます。私は、controller:didChangeContent [...] case NSFetchedResultsChangeDelete
でそれを使用することで、実際のジーン効果を簡単に得ることができますが、他のセルのの後ろにanim30ies があります。しかし、私はそれを他の細胞の上にの上にします。私は間違って何をしていますか?ここでジーティー効果でアニメーションUITableViewCell
は、アニメーションのコードです:
[UIView beginAnimations:@"suck" context:NULL];
[UIView setAnimationTransition:103 forView:myCell cache:YES];
[UIView setAnimationDuration:0.5];
[UIView setAnimationPosition:CGPointMake(50, 710)];
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
[UIView commitAnimations];
がhereからアイデアを得ました。
これらはプライベートAPIですので、Appleはあなたのアプリを拒否するかもしれません。 –