// // InvitationListViewController.h // kneet // // Created by Jason Lee on 6/12/15. // Copyright (c) 2015 ntels. All rights reserved. // #import "JDViewController.h" @interface InvitationListViewController : JDViewController #pragma mark - Properties @property (weak, nonatomic) IBOutlet UITableView *tableView; #pragma mark - Instance Methods @end @class CustomLabel; @interface InvitationTitleViewCell : UITableViewCell @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc; @end @class CustomButton; @interface InvitationTableViewCell : UITableViewCell @property (weak, nonatomic) IBOutlet CustomButton *btnProfile; @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc; @property (weak, nonatomic) IBOutlet CustomButton *btnJoin; @property (weak, nonatomic) IBOutlet CustomButton *btnReject; @end @interface InvitationActionCell : UITableViewCell @property (weak, nonatomic) IBOutlet CustomButton *btnLater; @end