Fix method naming

This commit is contained in:
Levi McCallum 2015-10-23 06:10:06 -07:00
parent 722b90f1cf
commit e0dfe8f0c4

View File

@ -280,10 +280,10 @@ static BOOL _isInterceptedSelector(SEL sel)
[self reloadDataWithCompletion:nil]; [self reloadDataWithCompletion:nil];
} }
- (void)reloadDataImmediatelyWithAnimationOptions:(ASDataControllerAnimationOptions)animationOptions - (void)reloadDataImmediately
{ {
ASDisplayNodeAssertMainThread(); ASDisplayNodeAssertMainThread();
[_dataController reloadDataImmediatelyWithAnimationOptions:animationOptions]; [_dataController reloadDataImmediatelyWithAnimationOptions:kASCollectionViewAnimationNone];
[super reloadData]; [super reloadData];
} }