My Project
 All Classes Functions Properties
InvitationTableViewCell.h
1 //
2 // InvitationTableViewCell.h
3 // BoredRoomBingo
4 //
5 // Created by Tom Reinhart on 11/19/14.
6 // Copyright (c) 2014 Tom Reinhart. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
11 - (void)acceptActionForItemText:(NSString *)gameName;
12 - (void)denyActionForItemText:(NSString *)gameName;
13 - (void)cellDidOpen:(UITableViewCell *)cell;
14 - (void)cellDidClose:(UITableViewCell *)cell;
15 @end
19 @interface InvitationTableViewCell : UITableViewCell
20 @property (strong, nonatomic) IBOutlet UILabel *gameNameLabel;
21 @property (strong, nonatomic) IBOutlet UILabel *creatorLabel;
22 // swipeable
23 @property (nonatomic, weak) IBOutlet UIButton *acceptButton;
24 @property (nonatomic, weak) IBOutlet UIButton *denyButton;
25 @property (nonatomic, weak) IBOutlet UIView *myContentView;
26 @property (nonatomic, weak) id <InvitationsTableViewCellDelegate> delegate;
27 - (void)openCell;
28 
29 @end
Definition: InvitationTableViewCell.h:10
void openCell()
Definition: InvitationTableViewCell.m:143
IBOutlet UIButton * denyButton
Deny invitation button.
Definition: InvitationTableViewCell.h:24
IBOutlet UIView * myContentView
content in cell view
Definition: InvitationTableViewCell.h:25
id< InvitationsTableViewCellDelegate > delegate
Invitation Cell Delegate.
Definition: InvitationTableViewCell.h:26
IBOutlet UILabel * gameNameLabel
Name of Label for Invite.
Definition: InvitationTableViewCell.h:20
IBOutlet UILabel * creatorLabel
Name of Creator For Invite.
Definition: InvitationTableViewCell.h:21
IBOutlet UIButton * acceptButton
Accept invitation button.
Definition: InvitationTableViewCell.h:23
Definition: InvitationTableViewCell.h:19