Bored Room Bingo
 All Classes Functions Properties
SelectWordTableViewCell.h
1 //
2 // SelectWordTableViewCell.h
3 // BoredRoomBingo
4 //
5 // Created by Tom Reinhart on 11/4/14.
6 // Copyright (c) 2014 Tom Reinhart. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 
11 @interface SelectWordTableViewCell : UITableViewCell
12 @property (strong, nonatomic) IBOutlet UILabel *wordLabel;
13 @property (strong, nonatomic) IBOutlet UIButton *selectButton;
14 
15 @end
Definition: SelectWordTableViewCell.h:11
IBOutlet UIButton * selectButton
Button for selecting/deselecting for adding to current words.
Definition: SelectWordTableViewCell.h:13
IBOutlet UILabel * wordLabel
Label for word from list.
Definition: SelectWordTableViewCell.h:12