Skip to content
This repository has been archived by the owner on Feb 2, 2023. It is now read-only.

Commit

Permalink
change reloadDataWithCompletion:nil --> reloadData
Browse files Browse the repository at this point in the history
  • Loading branch information
hannahmbanana authored and Adlai Holler committed Oct 14, 2016
1 parent 84ad640 commit a86ab5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/CustomCollectionView/Sample/ViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ - (void)dealloc

- (void)reloadTapped
{
[_collectionNode reloadDataWithCompletion:^{}];
[_collectionNode reloadData];
}

#pragma mark -
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ - (void)viewDidLoad

- (void)reloadEverything
{
[_tableNode reloadDataWithCompletion:nil];
[_tableNode reloadData];
}

#pragma mark - ASTableView.
Expand Down

0 comments on commit a86ab5f

Please sign in to comment.