42 lines
1.1 KiB
Objective-C
42 lines
1.1 KiB
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 "EspagramLessonTesting.h"
|
|
#import "EspagramConjugationTableViewController.h"
|
|
#import "Lesson+Conjugator.h"
|
|
#import "Lesson+Test.h"
|
|
#import "Verb.h"
|
|
|
|
@interface EspagramTestViewController : UIViewController <EspagramLessonTesting>
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *testedVerbLabel;
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *verbMeaningLable;
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *verbPersonLabel;
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *verbTestTenseLabel;
|
|
|
|
@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 (weak, nonatomic) IBOutlet UIProgressView *testProgressIndicator;
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *testStatusLabel;
|
|
|
|
@end
|