| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // 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;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- #pragma mark - Instance Methods
- - (void)requestInvitationList;
- - (IBAction)btnCloseTouched:(id)sender;
- @end
- @class CustomLabel;
- @class CustomImageView;
- @interface InvitationTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomButton *btnProfile;
- @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
|