Skip to content

Instantly share code, notes, and snippets.

@anka
Created January 4, 2015 16:39
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