| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // InvitationListViewController.h
- // kneet
- //
- // Created by Jason Lee on 6/12/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomButton;
- @interface InvitationListViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
- #pragma mark - Instance Methods
- - (void)requestInvitationList;
- - (IBAction)btnCloseTouched:(id)sender;
- @end
- @class CustomLabel;
- @class CustomImageView;
- @interface InvitationTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomImageView *imgvProfile;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblFromStatic;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblFromNickname;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblJoin;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblReject;
- @end
|