31 lines
699 B
Objective-C
31 lines
699 B
Objective-C
//
|
|
// EspagramConjugationTableViewController.h
|
|
// Espagram
|
|
//
|
|
// Created by Abel Fokkinga on 11/9/12.
|
|
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "Conjugator.h"
|
|
|
|
@class EspagramConjugationTableViewController;
|
|
|
|
@protocol EspagramConjugationTableView
|
|
|
|
@property (strong, nonatomic) id<Conjugator> conjugator;
|
|
@property (strong, nonatomic) Tense *tense;
|
|
@property (strong, nonatomic) NSString* verb;
|
|
|
|
@end
|
|
|
|
@interface EspagramConjugationTableViewController : UITableViewController
|
|
|
|
@property (weak, nonatomic) IBOutlet UITextField *verbInput;
|
|
|
|
@property (nonatomic, strong) id <EspagramConjugationTableView> dataSource;
|
|
|
|
- (void) reloadData;
|
|
|
|
@end
|