Mercurial > hg > soniczoomios
comparison QuestionnaireViewController.h @ 14:6a9191f5b269
Questionnaire view started function basic
author | Robert Tubb <rt300@eecs.qmul.ac.uk> |
---|---|
date | Wed, 16 Jan 2013 19:03:51 +0000 |
parents | |
children | e45c3e631d20 |
comparison
equal
deleted
inserted
replaced
13:3381c8bf4186 | 14:6a9191f5b269 |
---|---|
1 // | |
2 // QuestionnaireViewController.h | |
3 // oscSenderExample | |
4 // | |
5 // Created by Robert Tubb on 16/01/2013. | |
6 // | |
7 // | |
8 | |
9 #import <UIKit/UIKit.h> | |
10 | |
11 @interface QuestionnaireViewController : UIViewController | |
12 @property (retain, nonatomic) IBOutlet UISegmentedControl *answerPressed; | |
13 @property (retain, nonatomic) IBOutlet UILabel *questionText; | |
14 | |
15 //---------------------------------------------------------------- | |
16 -(IBAction)hide:(id)sender; | |
17 //---------------------------------------------------------------- | |
18 -(IBAction)show:(id)sender; | |
19 //---------------------------------------------------------------- | |
20 - (IBAction)nextQuestionPressed:(id)sender; | |
21 | |
22 -(void)populateQuestionArray; | |
23 @end | |
24 |