My Project
 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>
13 @interface SelectWordTableViewCell : UITableViewCell
14 @property (strong, nonatomic) IBOutlet UILabel *wordLabel;
15 @property (strong, nonatomic) IBOutlet UIButton *selectButton;
16 
17 @end
Definition: SelectWordTableViewCell.h:13
IBOutlet UIButton * selectButton
Button for selecting/deselecting for adding to current words.
Definition: SelectWordTableViewCell.h:15
IBOutlet UILabel * wordLabel
Label for word from list.
Definition: SelectWordTableViewCell.h:14