Sha256: a589d3db337a85b10097ad8c668beba65bac4bd12870025c0159e749d73601dc

Contents?: true

Size: 988 Bytes

Versions: 2

Compression:

Stored size: 988 Bytes

Contents

//
//  RufusPageViewController.m
//  RufusApp
//
//  Created by Jeremy Stewart on 8/15/13.
//  Copyright (c) 2013 Northwoods. All rights reserved.
//

#import "RufusPageViewController.h"
#import "RUViewController.h"

@interface RufusPageViewController ()

@end

@implementation RufusPageViewController

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view from its nib.
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (IBAction)goToHomePage:(id)sender {
    
    RUViewController *ruViewController = [[RUViewController alloc] init];
    [[self navigationController] pushViewController:ruViewController animated:YES];
}

@end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rufus-0.3 RufusApp/RufusApp/RufusPageViewController.m
rufus-0.1 RufusApp/RufusApp/RufusPageViewController.m