An iOS Table View that uses block-based delegation instead of protocols.
- Preferred way is CocoaPods, (not available quite yet).
- Copy
MTBlockTableView.h
andMTBlockTableView.m
into your project from theMTBlockTableView
target
MTBlockTableView
is an experimental, drop-in replacement for UITableView
which uses blocks for all protocol methods:
- (void)viewDidLoad
{
[super viewDidLoad];
[_tableView setNumberOfRowsInSectionBlock:^NSInteger(UITableView *tableView, NSInteger section) {
return 10;
}];
[_tableView setCellForRowAtIndexPathBlock:^UITableViewCell *(UITableView *tableView, NSIndexPath *indexPath) {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
cell.textLabel.text = [@(indexPath.row) stringValue];
return cell;
}];
}
The motivation for this library is a proof-of-concept that delegation through protocols could be replaced by delegation through blocks, and in many circumstances would be much move expressive and convenient for programmers. See this blog post for more thorough examples.
- The
UITableViewDelegate
methods are not yet implemented, only theUITableViewDataSource
methods.
- Finish
UITableViewDelegate
implementation and testing.
Be sure to run the tests in the MTBlockTableViewTests
target before submitting pull requests.