私はテーブルを持っていますが、「スワイプして削除」を行うと、赤いボタンが初めてアニメーション化され、リターン(別のスワイプを行うと)アニメーションなしで消えることに気付きました。これらは、このステップで使用する方法です。
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView
editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
return UITableViewCellEditingStyleDelete;
}
- (void)tableView:(UITableView *)tableView
commitEditingStyle:(UITableViewCellEditingStyle)editingStyle
forRowAtIndexPath:(NSIndexPath *)indexPath {
...
}
- (void)tableView:(UITableView *)tableView
didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath {
[tableView reloadData];
}
リターンをアニメーション化するために何かを忘れましたか?
どうもありがとう!