Version 0.2
This commit is contained in:
34
Espagram/EspagramNewLessonViewController.h
Normal file
34
Espagram/EspagramNewLessonViewController.h
Normal file
@@ -0,0 +1,34 @@
|
||||
//
|
||||
// EspagramNewLessonViewController.h
|
||||
// Espagram
|
||||
//
|
||||
// Created by Abel Fokkinga on 11/13/12.
|
||||
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
@class EspagramConjugationTableViewController;
|
||||
|
||||
@protocol EspagramNewLessonDelegate
|
||||
- (void) addLesson:(NSString*)title withDescription:(NSString*) subTitle;
|
||||
- (void) cancelLesson;
|
||||
@end
|
||||
|
||||
@interface EspagramNewLessonViewController : UIViewController
|
||||
|
||||
@property (weak, nonatomic) IBOutlet UILabel *nameLabel;
|
||||
|
||||
@property (weak, nonatomic) IBOutlet UILabel *descriptionLabel;
|
||||
|
||||
@property (weak, nonatomic) IBOutlet UIButton *addButton;
|
||||
|
||||
@property (weak, nonatomic) IBOutlet UIButton *cancelButton;
|
||||
|
||||
@property (weak, nonatomic) IBOutlet UITextField *lessonNameTextInput;
|
||||
|
||||
@property (weak, nonatomic) IBOutlet UITextField *lessonDescriptionTextInput;
|
||||
|
||||
@property (nonatomic,strong) id <EspagramNewLessonDelegate> dataSource;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user