Skip to content

Instantly share code, notes, and snippets.

@greenisus
Created September 28, 2011 17:30
Show Gist options
  • Save greenisus/1248581 to your computer and use it in GitHub Desktop.
Save greenisus/1248581 to your computer and use it in GitHub Desktop.
short vc
//
// RSAccountsViewController.m
// Rackspace
//
// Created by Michael Mayo on 9/27/11.
// Copyright (c) 2011 Rackspace, US Inc. All rights reserved.
//
#import "RSAccountsViewController.h"
#import "RSAccountsDataSource.h"
#import "RSAccount.h"
@implementation RSAccountsViewController
@synthesize dataSource;
- (void)viewDidLoad {
self.navigationItem.leftBarButtonItem = self.editButtonItem;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
RSAccount *account = [self.dataSource.fetchedResultsController objectAtIndexPath:indexPath];
NSLog(@"account: %@", account);
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment