InvitationListViewController.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. @interface InvitationListViewController : JDViewController
  10. #pragma mark - Properties
  11. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  12. #pragma mark - Instance Methods
  13. @end
  14. @class CustomLabel;
  15. @interface InvitationTitleViewCell : UITableViewCell
  16. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  17. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
  18. @end
  19. @class CustomButton;
  20. @interface InvitationTableViewCell : UITableViewCell
  21. @property (weak, nonatomic) IBOutlet CustomButton *btnProfile;
  22. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  23. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
  24. @property (weak, nonatomic) IBOutlet CustomButton *btnJoin;
  25. @property (weak, nonatomic) IBOutlet CustomButton *btnReject;
  26. @end
  27. @interface InvitationActionCell : UITableViewCell
  28. @property (weak, nonatomic) IBOutlet CustomButton *btnLater;
  29. @end