Created
September 30, 2011 20:58
-
-
Save greenisus/1254957 to your computer and use it in GitHub Desktop.
account vc
This file contains hidden or 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
// | |
// 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" | |
#import "RSProvider.h" | |
#define kShowAccountHome @"ShowAccountHome" | |
@implementation RSAccountsViewController | |
@synthesize dataSource; | |
#pragma mark - View Lifecycle | |
- (void)viewDidLoad { | |
self.navigationItem.leftBarButtonItem = self.editButtonItem; | |
} | |
#pragma mark - Table View Delegate | |
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { | |
RSAccount *account = [self.dataSource.fetchedResultsController objectAtIndexPath:indexPath]; | |
[account activate]; | |
[self performSegueWithIdentifier:kShowAccountHome sender:nil]; | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment