Skip to content

Instantly share code, notes, and snippets.

@anka
Created January 4, 2015 16:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anka/2b5145f50df7facee494 to your computer and use it in GitHub Desktop.
Save anka/2b5145f50df7facee494 to your computer and use it in GitHub Desktop.
iOS chained table view row animation part 1
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return _data.count;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return ((NSArray*)_data[section]).count;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment