Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am building an app where I need to change some helpful information based on what stage the user is at:

I used strings labeled Stage1 ... Stage7 in the dictionary and I want to display the helpful info from each Stage wen the user moves the slider.

NSDictionary *foodInfo = [foodArray objectAtIndex:row];

NSInteger numberLookup = lroundf([stageSlider value]);
NSString* stageText = @"Stage";
stageText = [stageText stringByAppendingFormat:@"%i", numberLookup];

NSNumber *helps = [foodInfo objectForKey:@"Stage1"]; // Need stageText string instead "Stage1" shown?
notesLabel.text = helps; 

Currently I display the "Stage1" text no matter where the slider is positioned and I have verified that "stageText" is incrementing/decrementing just fine.

How do I put the stageText string in instead of the text string shown?

Thanks for the help.

padapa

share|improve this question

2 Answers

up vote 0 down vote accepted

Like that ? NSNumber *helps = [foodInfo objectForKey:[NSString stringWithFormat:@"stage%d",numberLookup]];

share|improve this answer
Thanks malinois, that works and shortens up the code too :) nice! – padapa Mar 3 '11 at 15:14
NSNumber *helps = [foodInfo objectForKey:stageText];
share|improve this answer
I like the simplicity, but I get this error: 'stagetText' undeclared (first use in this function) – padapa Mar 3 '11 at 15:07
@padapa: but stageText is defined only a couple of lines above. Your comment has a typo in it, perhaps the same typo is in your code: 'stage**t**Text' undeclared (first use in this function) – JeremyP Mar 3 '11 at 15:44
yeah, the comment does have a typo ... I'll doubble check the code... (just kidding with this typo) – padapa Mar 3 '11 at 17:08
JP ... thanks for the help – padapa Mar 6 '11 at 1:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.