Mercurial > hg > soniczoomios
comparison QuestionnaireViewController.h @ 28:e2c62db1e265
Started timer stuff
author | Robert Tubb <rt300@eecs.qmul.ac.uk> |
---|---|
date | Mon, 18 Feb 2013 11:45:05 +0000 |
parents | 8c0783739337 |
children | 23ef179c3748 |
comparison
equal
deleted
inserted
replaced
27:ae4d2c3ce5e0 | 28:e2c62db1e265 |
---|---|
9 #import <UIKit/UIKit.h> | 9 #import <UIKit/UIKit.h> |
10 | 10 |
11 #import "Question.h" | 11 #import "Question.h" |
12 | 12 |
13 @interface QuestionnaireViewController : UIViewController | 13 @interface QuestionnaireViewController : UIViewController |
14 <UIPickerViewDelegate, UIPickerViewDataSource> | 14 <UIPickerViewDelegate, UIPickerViewDataSource, UITextFieldDelegate> |
15 { | 15 { |
16 | 16 |
17 UIPickerView *picker; | 17 UIPickerView *picker; |
18 | 18 |
19 | 19 |
24 @property (retain, nonatomic) IBOutlet UIButton *nextButton; | 24 @property (retain, nonatomic) IBOutlet UIButton *nextButton; |
25 @property (retain, nonatomic) IBOutlet UIButton *previousButton; | 25 @property (retain, nonatomic) IBOutlet UIButton *previousButton; |
26 | 26 |
27 @property (strong, nonatomic) IBOutlet UIPickerView *picker; | 27 @property (strong, nonatomic) IBOutlet UIPickerView *picker; |
28 | 28 |
29 @property (retain, nonatomic) IBOutlet UITextView *commentText; | |
29 | 30 |
30 //---------------------------------------------------------------- | 31 //---------------------------------------------------------------- |
31 -(IBAction)hide:(id)sender; | 32 -(IBAction)hide:(id)sender; |
32 -(IBAction)show:(id)sender; | 33 -(IBAction)show:(id)sender; |
33 - (IBAction)nextQuestionPressed:(id)sender; | 34 - (IBAction)nextQuestionPressed:(id)sender; |