Version 0.2

This commit is contained in:
Abel Fokkinga
2012-11-23 23:06:49 +01:00
parent 04dd58a040
commit 3e9eb6a7e0
72 changed files with 5564 additions and 911 deletions

View 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