# HG changeset patch # User Robert Tubb # Date 1359135767 0 # Node ID dae6d77657a035d52e48be2fc390003945182729 # Parent 8c07837393373fd737e65502066e3006188b2461 17 diff -r 8c0783739337 -r dae6d77657a0 QuestionnaireViewController.mm --- a/QuestionnaireViewController.mm Thu Jan 24 18:14:40 2013 +0000 +++ b/QuestionnaireViewController.mm Fri Jan 25 17:42:47 2013 +0000 @@ -153,7 +153,7 @@ - (void)loadQuestion:(NSInteger)questionIndex { // populate text fields with question NSString *qtitle; - qtitle = [@"Question " stringByAppendingFormat:@"%d / 16",questionIndex+1]; + qtitle = [@"Question " stringByAppendingFormat:@"%d / %d",questionIndex+1, [questionArray count]]; self.titleText.text = qtitle; Question *curQ = [questionArray objectAtIndex:self.currentQuestionIndex]; @@ -179,13 +179,14 @@ [[Question alloc] initWithTextAndType:@"A sound could be fine tuned more easily using:":SLIDERS_ZOOMER], [[Question alloc] initWithTextAndType:@"The correspondence between the sliders and the grid was understandable.":AGREE_DISAGREE], [[Question alloc] initWithTextAndType:@"The interface that felt more familiar was:":SLIDERS_ZOOMER], - [[Question alloc] initWithTextAndType:@"Scrolling a greater distance the zoom grid seemed to correspond to larger difference in the sound.":AGREE_DISAGREE], + [[Question alloc] initWithTextAndType:@"Scrolling a greater distance on the grid seemed to correspond to larger difference in the sound.":AGREE_DISAGREE], [[Question alloc] initWithTextAndType:@"The ability to see other presets on the grid was useful.":AGREE_DISAGREE], [[Question alloc] initWithTextAndType:@"The range of sounds was too limited to be able to judge the eventual usefulness of the interface.":AGREE_DISAGREE], [[Question alloc] initWithTextAndType:@"The interface better for generating new ideas was":SLIDERS_ZOOMER], [[Question alloc] initWithTextAndType:@"The interface better for live performance would be:":SLIDERS_ZOOMER], [[Question alloc] initWithTextAndType:@"A specific type of sound could be found more quickly using:":SLIDERS_ZOOMER], [[Question alloc] initWithTextAndType:@"I felt more in control when using:":SLIDERS_ZOOMER], + [[Question alloc] initWithTextAndType:@"I felt more creative when using:":SLIDERS_ZOOMER], [[Question alloc] initWithTextAndType:@"The Zoomer was an improvement on just using a randomiser.":AGREE_DISAGREE], [[Question alloc] initWithTextAndType:@"The combination of Zoomer and Sliders was better than either individually.":AGREE_DISAGREE], [[Question alloc] initWithTextAndType:@"Overall, I preferred using:":SLIDERS_ZOOMER],