I have a piece of code that is giving me a 'Expression Result Unused' warning. I have no idea what I'm doing wrong. Please help!

  if(task.typeForThis.typeID == @"DivisionAT"){

    probsPerDayLabel.hidden = NO;
    whatToDoLabel.hidden = YES;
    //int ppdi = task.probsPerDay;
    //NSString *ppd = [NSString stringWithFormat: @"%i", ppdi];
    probsPerDayLabel.text = @"Do %i problems today.",task.probsPerDay; //Right here

}
link|improve this question

38% accept rate
feedback

2 Answers

This line:

probsPerDayLabel.text = @"Do %i problems today.",task.probsPerDay

should be:

probsPerDayLabel.text = [NSString stringWithFormat:@"Do %i problems today.",task.probsPerDay];

In your version, the result of task.probsPerDay is completely unused, and the text on the label will be "Do %i problems today.", without the %i being replaced by a number.

link|improve this answer
@Joe: That can't be true. You'd get an integer converted to a pointer error. I've tried it in Xcode and it isn't. – grahamparks Feb 17 at 21:52
@Joe: No, it's equivalent to (probsPerDayLabel.text = @"Do %i problems today."), task.probsPerDay;. The comma has lower precedence than assignment. – grahamparks Feb 17 at 22:16
That is correct. end of day Friday, I need to go home! – Joe Feb 17 at 22:18
feedback

You need to be using the stringWithFormat: method of NSString, like this:

probsPerDayLabel.text = [NSString stringWithFormat:@"Do %i problems today.", task.probsPerDay];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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