Skip to content

Commit

Permalink
better
Browse files Browse the repository at this point in the history
  • Loading branch information
Jérôme Lebel committed Mar 24, 2014
1 parent 4c69925 commit e185b8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Network/FBGraphObjectTableDataSource.m
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ @interface FBGraphObjectTableDataSource ()
@property (nonatomic, assign) BOOL showSections;

- (BOOL)filterIncludesItem:(FBGraphObject *)item;
- (UITableViewCell<FBGraphObjectTableCell>*)cellWithTableView:(UITableView *)tableView;
- (FBGraphObjectTableCell *)cellWithTableView:(UITableView *)tableView;
- (NSString *)indexKeyOfItem:(FBGraphObject *)item;
- (UIImage *)tableView:(UITableView *)tableView imageForItem:(FBGraphObject *)item;
- (void)addOrRemovePendingConnection:(FBURLConnection *)connection;
Expand Down Expand Up @@ -250,7 +250,7 @@ - (void)setSortingBySingleField:(NSString *)fieldName ascending:(BOOL)ascending
[self setSortingByFields:[NSArray arrayWithObject:fieldName] ascending:ascending];
}

- (UITableViewCell<FBGraphObjectTableCell>*)cellWithTableView:(UITableView *)tableView
- (FBGraphObjectTableCell *)cellWithTableView:(UITableView *)tableView
{
static NSString *const cellKey = @"fbTableCell";
FBGraphObjectTableCell *cell =
Expand Down Expand Up @@ -501,7 +501,7 @@ - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell<FBGraphObjectTableCell> *cell = [self cellWithTableView:tableView];
FBGraphObjectTableCell *cell = [self cellWithTableView:tableView];

if ([self isActivityIndicatorIndexPath:indexPath]) {
cell.picture = nil;
Expand Down

0 comments on commit e185b8d

Please sign in to comment.