Mercurial > hg > soniczoomios
annotate QuestionnaireViewController.h @ 15:e45c3e631d20
View fiddling
author | Robert Tubb <rt300@eecs.qmul.ac.uk> |
---|---|
date | Thu, 17 Jan 2013 13:01:19 +0000 |
parents | 6a9191f5b269 |
children | fb2ef16dd013 |
rev | line source |
---|---|
rt300@14 | 1 // |
rt300@14 | 2 // QuestionnaireViewController.h |
rt300@14 | 3 // oscSenderExample |
rt300@14 | 4 // |
rt300@14 | 5 // Created by Robert Tubb on 16/01/2013. |
rt300@14 | 6 // |
rt300@14 | 7 // |
rt300@14 | 8 |
rt300@14 | 9 #import <UIKit/UIKit.h> |
rt300@14 | 10 |
rt300@14 | 11 @interface QuestionnaireViewController : UIViewController |
rt300@15 | 12 |
rt300@14 | 13 @property (retain, nonatomic) IBOutlet UILabel *questionText; |
rt300@15 | 14 @property (retain, nonatomic) IBOutlet UILabel *titleText; |
rt300@14 | 15 |
rt300@14 | 16 //---------------------------------------------------------------- |
rt300@14 | 17 -(IBAction)hide:(id)sender; |
rt300@14 | 18 //---------------------------------------------------------------- |
rt300@14 | 19 -(IBAction)show:(id)sender; |
rt300@14 | 20 //---------------------------------------------------------------- |
rt300@14 | 21 - (IBAction)nextQuestionPressed:(id)sender; |
rt300@15 | 22 - (IBAction)previousQuestionPressed:(id)sender; |
rt300@14 | 23 |
rt300@14 | 24 -(void)populateQuestionArray; |
rt300@14 | 25 @end |
rt300@14 | 26 |