InvitationListViewController.h 885 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // InvitationListViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 6/12/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomButton;
  10. @interface InvitationListViewController : JDViewController
  11. #pragma mark - Properties
  12. @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
  13. #pragma mark - Instance Methods
  14. - (void)requestInvitationList;
  15. - (IBAction)btnCloseTouched:(id)sender;
  16. @end
  17. @class CustomLabel;
  18. @class CustomImageView;
  19. @interface InvitationTableViewCell : UITableViewCell
  20. @property (weak, nonatomic) IBOutlet CustomImageView *imgvProfile;
  21. @property (weak, nonatomic) IBOutlet CustomLabel *lblFromStatic;
  22. @property (weak, nonatomic) IBOutlet CustomLabel *lblFromNickname;
  23. @property (weak, nonatomic) IBOutlet CustomLabel *lblJoin;
  24. @property (weak, nonatomic) IBOutlet CustomLabel *lblReject;
  25. @end