Skip to content

Instantly share code, notes, and snippets.

@okaram
Created January 1, 2013 23:29
Show Gist options
  • Save okaram/4430955 to your computer and use it in GitHub Desktop.
Save okaram/4430955 to your computer and use it in GitHub Desktop.
A simple but complete TicTacToe game for iOS
@interface TTTViewController : UIViewController {
UIImage* imgs[2];
}
@property IBOutletCollection(UIButton) NSArray*board;
@property IBOutlet UIImageView* currentPlayerView;
@property int currentPlayer;
@property boolean_t playing;
-(IBAction)cellPressed:(id)sender;
-(IBAction)restartGame:(id)sender;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment