Bored Room Bingo
 All Classes Functions Properties
BingoBoardViewController.h
1 //
2 // BingoBoardViewController.h
3 // BoredRoomBingo
4 //
5 // Created by Tom Reinhart on 11/9/14.
6 // Copyright (c) 2014 Tom Reinhart. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
13 @interface BingoBoardViewController : UIViewController <UIAlertViewDelegate>
14 
15 @property (strong, nonatomic) IBOutletCollection(UIButton) NSArray *boardButton;
16 @property (nonatomic,strong) NSMutableArray *boardWords;
17 @property (nonatomic,strong) NSString *gameKey;
18 
19 
20 @end
NSString * gameKey
Unique game id where game is hosted from firebase.
Definition: BingoBoardViewController.h:17
IBOutletCollection(UIButton) NSArray *boardButton
Collection of all board buttons.
NSMutableArray * boardWords
Array containing all words on board.
Definition: BingoBoardViewController.h:16
Definition: BingoBoardViewController.h:13