51 lines
1.1 KiB
Objective-C
51 lines
1.1 KiB
Objective-C
//
|
|
// EspagramTestViewController.m
|
|
// Espagram
|
|
//
|
|
// Created by Abel Fokkinga on 11/8/12.
|
|
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
|
|
//
|
|
|
|
#import "EspagramTestViewController.h"
|
|
#import "GrammarTestViewController.h"
|
|
|
|
@interface EspagramTestViewController ()
|
|
|
|
@end
|
|
|
|
@implementation EspagramTestViewController
|
|
|
|
@synthesize conjugator = _conjugator;
|
|
|
|
- (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.
|
|
}
|
|
|
|
- (void)didReceiveMemoryWarning
|
|
{
|
|
[super didReceiveMemoryWarning];
|
|
// Dispose of any resources that can be recreated.
|
|
}
|
|
|
|
|
|
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
|
|
|
|
if ( [segue.identifier isEqualToString:@"Conjugate"]) {
|
|
[segue.destinationViewController setConjugator:self.conjugator];
|
|
[segue.destinationViewController setTense:self.tense];
|
|
}
|
|
}
|
|
|
|
@end
|