annotate 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
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@14 12 @property (retain, nonatomic) IBOutlet UISegmentedControl *answerPressed;
rt300@14 13 @property (retain, nonatomic) IBOutlet UILabel *questionText;
rt300@14 14
rt300@14 15 //----------------------------------------------------------------
rt300@14 16 -(IBAction)hide:(id)sender;
rt300@14 17 //----------------------------------------------------------------
rt300@14 18 -(IBAction)show:(id)sender;
rt300@14 19 //----------------------------------------------------------------
rt300@14 20 - (IBAction)nextQuestionPressed:(id)sender;
rt300@14 21
rt300@14 22 -(void)populateQuestionArray;
rt300@14 23 @end
rt300@14 24