InvitationListViewController.h 941 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  14. #pragma mark - Instance Methods
  15. - (void)requestInvitationList;
  16. - (IBAction)btnCloseTouched:(id)sender;
  17. @end
  18. @class CustomLabel;
  19. @class CustomImageView;
  20. @interface InvitationTableViewCell : KNTableViewCell
  21. @property (weak, nonatomic) IBOutlet CustomButton *btnProfile;
  22. @property (weak, nonatomic) IBOutlet CustomLabel *lblFromStatic;
  23. @property (weak, nonatomic) IBOutlet CustomLabel *lblFromNickname;
  24. @property (weak, nonatomic) IBOutlet CustomLabel *lblJoin;
  25. @property (weak, nonatomic) IBOutlet CustomLabel *lblReject;
  26. @end