Skip to content

Instantly share code, notes, and snippets.

Created December 13, 2012 01:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/a4b54bc820ec1bd8bf36 to your computer and use it in GitHub Desktop.
Save anonymous/a4b54bc820ec1bd8bf36 to your computer and use it in GitHub Desktop.
@implementation ThingsViewController
static NSString *ThingCellIdentifier = @"ThingCell";
- (ResultSetTableDataSource *)thingsDataSource
{
if (_thingsDataSource == nil) {
_thingsDataSource = [[CNResultSetTableDataSource alloc] initWithAutomaticallyUpdatingResultSet:[self.thingsRepository allThings]];
_thingsDataSource.cellIdentifier = ThingCellIdentifier;
_thingsDataSource.changeDelegate = self;
}
return _thingsDataSource;
}
#pragma mark - View lifecycle
- (void)viewDidLoad
{
[super viewDidLoad];
[self.tableView setDataSource:self.thingsDataSource];
}
#pragma mark - ResultSetTableDataSourceChangesDelegate
- (void)dataSource:(ResultSetTableDataSource *)dataSource resultSetDidChange:(NSDictionary *)changes
{
[self.tableView reloadData];
}
#pragma mark - UITableViewDelegate
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
// Thing *thing = [self.thingsDataSource objectAtIndexPath:indexPath];
// bind conversation object with cell in this method here
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment