Created
December 10, 2012 23:34
-
-
Save imjacobclark/4254329 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (IBAction)buttonPressed:(UIButton *)sender { | |
NSArray *predictionArray = [[NSArray alloc] initWithObjects: | |
@"It is certain", | |
@"It is decididley so", | |
@"All signs say yes", | |
@"The stars are not alligned", | |
@"My reply is no", | |
@"Better not tell you now", | |
@"Concentrate and ask again", | |
@"Unable to answer now", nil]; | |
self.predictionLabel.text = [predictionArray objectAtIndex:5]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment