I have an iPhone app problem that\'s been bugging me for a few days and it really doesn\'t seem like it should be this difficult so I\'m sure I\'m missing something obvious.
This is not valid (At least not if you are trying to compare strings my contents instead of addresses):
if (myRating == @"9")
Try this:
if ([myRating isEqualToString:@"9"])
And +1 to yuji for noticing the multiple button creation.