My Project
 All Classes Functions Properties
InviteFriendsViewController.h
1 //
2 // InviteFriendsViewController.h
3 // BoredRoomBingo
4 //
5 // Created by Tom Reinhart on 11/16/14.
6 // Copyright (c) 2014 Tom Reinhart. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
13 @interface InviteFriendsViewController : UIViewController <UITextFieldDelegate>
14 @property (nonatomic,strong) NSString *gameKey;
15 @property (nonatomic,strong) NSString *gameName;
16 @property (strong, nonatomic) IBOutlet UITextField *searchFriendsTextField;
17 
18 
19 @end
Definition: InviteFriendsViewController.h:13
NSString * gameKey
Key of Game to send to users.
Definition: InviteFriendsViewController.h:14
IBOutlet UITextField * searchFriendsTextField
Text Field used to search all users.
Definition: InviteFriendsViewController.h:16
NSString * gameName
Name of game to send to users.
Definition: InviteFriendsViewController.h:15