comparison QuestionnaireViewController.mm @ 23:dae6d77657a0

17
author Robert Tubb <rt300@eecs.qmul.ac.uk>
date Fri, 25 Jan 2013 17:42:47 +0000
parents 8c0783739337
children ae4d2c3ce5e0
comparison
equal deleted inserted replaced
22:8c0783739337 23:dae6d77657a0
151 151
152 //---------------------------------------------------------------- 152 //----------------------------------------------------------------
153 - (void)loadQuestion:(NSInteger)questionIndex { 153 - (void)loadQuestion:(NSInteger)questionIndex {
154 // populate text fields with question 154 // populate text fields with question
155 NSString *qtitle; 155 NSString *qtitle;
156 qtitle = [@"Question " stringByAppendingFormat:@"%d / 16",questionIndex+1]; 156 qtitle = [@"Question " stringByAppendingFormat:@"%d / %d",questionIndex+1, [questionArray count]];
157 self.titleText.text = qtitle; 157 self.titleText.text = qtitle;
158 158
159 Question *curQ = [questionArray objectAtIndex:self.currentQuestionIndex]; 159 Question *curQ = [questionArray objectAtIndex:self.currentQuestionIndex];
160 160
161 self.questionText.text = curQ.questionText; 161 self.questionText.text = curQ.questionText;
177 [[Question alloc] initWithTextAndType:@"The best way to get a feel for the possibilities of the synth was with:":SLIDERS_ZOOMER], 177 [[Question alloc] initWithTextAndType:@"The best way to get a feel for the possibilities of the synth was with:":SLIDERS_ZOOMER],
178 [[Question alloc] initWithTextAndType:@"Interesting sounds could be discovered more quickly as a result of using:":SLIDERS_ZOOMER], 178 [[Question alloc] initWithTextAndType:@"Interesting sounds could be discovered more quickly as a result of using:":SLIDERS_ZOOMER],
179 [[Question alloc] initWithTextAndType:@"A sound could be fine tuned more easily using:":SLIDERS_ZOOMER], 179 [[Question alloc] initWithTextAndType:@"A sound could be fine tuned more easily using:":SLIDERS_ZOOMER],
180 [[Question alloc] initWithTextAndType:@"The correspondence between the sliders and the grid was understandable.":AGREE_DISAGREE], 180 [[Question alloc] initWithTextAndType:@"The correspondence between the sliders and the grid was understandable.":AGREE_DISAGREE],
181 [[Question alloc] initWithTextAndType:@"The interface that felt more familiar was:":SLIDERS_ZOOMER], 181 [[Question alloc] initWithTextAndType:@"The interface that felt more familiar was:":SLIDERS_ZOOMER],
182 [[Question alloc] initWithTextAndType:@"Scrolling a greater distance the zoom grid seemed to correspond to larger difference in the sound.":AGREE_DISAGREE], 182 [[Question alloc] initWithTextAndType:@"Scrolling a greater distance on the grid seemed to correspond to larger difference in the sound.":AGREE_DISAGREE],
183 [[Question alloc] initWithTextAndType:@"The ability to see other presets on the grid was useful.":AGREE_DISAGREE], 183 [[Question alloc] initWithTextAndType:@"The ability to see other presets on the grid was useful.":AGREE_DISAGREE],
184 [[Question alloc] initWithTextAndType:@"The range of sounds was too limited to be able to judge the eventual usefulness of the interface.":AGREE_DISAGREE], 184 [[Question alloc] initWithTextAndType:@"The range of sounds was too limited to be able to judge the eventual usefulness of the interface.":AGREE_DISAGREE],
185 [[Question alloc] initWithTextAndType:@"The interface better for generating new ideas was":SLIDERS_ZOOMER], 185 [[Question alloc] initWithTextAndType:@"The interface better for generating new ideas was":SLIDERS_ZOOMER],
186 [[Question alloc] initWithTextAndType:@"The interface better for live performance would be:":SLIDERS_ZOOMER], 186 [[Question alloc] initWithTextAndType:@"The interface better for live performance would be:":SLIDERS_ZOOMER],
187 [[Question alloc] initWithTextAndType:@"A specific type of sound could be found more quickly using:":SLIDERS_ZOOMER], 187 [[Question alloc] initWithTextAndType:@"A specific type of sound could be found more quickly using:":SLIDERS_ZOOMER],
188 [[Question alloc] initWithTextAndType:@"I felt more in control when using:":SLIDERS_ZOOMER], 188 [[Question alloc] initWithTextAndType:@"I felt more in control when using:":SLIDERS_ZOOMER],
189 [[Question alloc] initWithTextAndType:@"I felt more creative when using:":SLIDERS_ZOOMER],
189 [[Question alloc] initWithTextAndType:@"The Zoomer was an improvement on just using a randomiser.":AGREE_DISAGREE], 190 [[Question alloc] initWithTextAndType:@"The Zoomer was an improvement on just using a randomiser.":AGREE_DISAGREE],
190 [[Question alloc] initWithTextAndType:@"The combination of Zoomer and Sliders was better than either individually.":AGREE_DISAGREE], 191 [[Question alloc] initWithTextAndType:@"The combination of Zoomer and Sliders was better than either individually.":AGREE_DISAGREE],
191 [[Question alloc] initWithTextAndType:@"Overall, I preferred using:":SLIDERS_ZOOMER], 192 [[Question alloc] initWithTextAndType:@"Overall, I preferred using:":SLIDERS_ZOOMER],
192 nil]; 193 nil];
193 194