Skip to content

An iOS Table View that uses block-based delegation instead of protocols.

License

Notifications You must be signed in to change notification settings

xdh725/MTBlockTableView

 
 

Repository files navigation

MTBlockTableView

An iOS Table View that uses block-based delegation instead of protocols. Try it, we dare you.

Installation

  1. Preferred way is CocoaPods, just add pod 'MTBlockTableView' to your Podfile.
  2. Copy MTBlockTableView.h and MTBlockTableView.m into your project from the MTBlockTableView target

Usage

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;
    }];
}

Discussion

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.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Write Tests
  4. Commit your changes (git commit -am 'Added some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create new Pull Request

Contributors

Parker Wightman (@parkerwightman)

modocache

About

An iOS Table View that uses block-based delegation instead of protocols.

Resources

License

Stars

Watchers

Forks

Packages

No packages published