Created
September 27, 2011 21:37
-
-
Save greenisus/1246320 to your computer and use it in GitHub Desktop.
data source
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// RSAccountsDataSource.m | |
// Rackspace | |
// | |
// Created by Michael Mayo on 9/27/11. | |
// Copyright (c) 2011 Rackspace, US Inc. All rights reserved. | |
// | |
#import "RSAccountsDataSource.h" | |
#import "RSAccount.h" | |
@implementation RSAccountsDataSource | |
- (id)init { | |
self = [super init]; | |
if (self) { | |
self.entityDescription = [RSAccount entityDescription]; | |
} | |
return self; | |
} | |
- (void)configureCell:(UITableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath withObject:(id)object { | |
cell.textLabel.text = @"hello world"; | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment