espagram/Espagram/EspagramTestViewController.h
2012-11-23 23:06:49 +01:00

38 lines
942 B
Objective-C

//
// EspagramTestViewController.h
// Espagram
//
// Created by Abel Fokkinga on 11/8/12.
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "Conjugator.h"
#import "EspagramConjugationTableViewController.h"
#import "Lesson+Conjugator.h"
#import "Lesson+Test.h"
#import "Verb.h"
@interface EspagramTestViewController : UIViewController
@property (weak, nonatomic) IBOutlet UILabel *testedVerbLabel;
@property (weak, nonatomic) IBOutlet UILabel *verbMeaningLable;
@property (weak, nonatomic) IBOutlet UILabel *verbPersonLabel;
@property (weak, nonatomic) IBOutlet UIButton *answer1Button;
@property (weak, nonatomic) IBOutlet UIButton *answer2Button;
@property (weak, nonatomic) IBOutlet UIButton *answer3Button;
@property (weak, nonatomic) IBOutlet UIButton *answer4Button;
@property (weak, nonatomic) IBOutlet UIButton *nextButton;
@property (strong, nonatomic) Lesson *lesson;
@end