I want to remove a UITableView cell, but with animation. I need animation as described below:
You need to draw a content string with a UITableViewCell, and when my touch is finished, the content will disappear, and after that the cell will be deleted. You can get a view from the image attached here. 
I thought to achieve this with this thread:
- I need to draw a string on content using CoreGraphics
- In
- (void)touchesEnded:(NSSet*)touches withEvent:(UIEvent*)event I will call step3 - Invocation
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
Let me know if I'm wrong, or you have other alternatives.
Any help is appreciated.
source share