Skip to content

Commit 5ab70c1

Browse files
author
Ernesto Rivera
committed
Set default insert animation to UITableViewRowAnimationFade
1 parent a22fd10 commit 5ab70c1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Source/AMBTableViewController.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
/// Insert section/row animation. By default `UITableViewRowAnimationAutomatic`.
7878
@property (nonatomic) UITableViewRowAnimation insertAnimation;
7979

80-
/// Insert section/row animation. By default `UITableViewRowAnimationAutomatic`.
80+
/// Insert section/row animation. By default `UITableViewRowAnimationFade`.
8181
@property (nonatomic) UITableViewRowAnimation removeAnimation;
8282

8383
/// Execute a block while temporarily overriding reload, insert and remove animations.

Source/AMBTableViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ - (void)awakeFromNib
3737

3838
self.reloadAnimation = UITableViewRowAnimationNone;
3939
self.insertAnimation = UITableViewRowAnimationAutomatic;
40-
self.removeAnimation = UITableViewRowAnimationAutomatic;
40+
self.removeAnimation = UITableViewRowAnimationFade;
4141
}
4242

4343
- (NSString *)description

0 commit comments

Comments
 (0)