I\'m just learning how to code so thanks for your patience on this simple question.
Here\'s my code:
- (IBAction)buttonWasPressed:(id)sender {
Use -isEqualToString method:
if ([buttonName isEqualToString:@"Button 1"]) ...
using == you compare ponters, not the actual string values they contain
==