| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- //
- // 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
|