HomeMemberAddViewController.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // HomeMemberAddViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 6/15/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @interface HomeMemberAddViewController : JDViewController
  10. #pragma mark - Properties
  11. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  12. @property (weak, nonatomic) IBOutlet CustomButton *btnSend;
  13. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
  14. #pragma mark - Instance Methods
  15. - (IBAction)btnSendTouched:(id)sender;
  16. - (IBAction)btnCancelTouched:(id)sender;
  17. @end
  18. @class CustomTextField2;
  19. @class DatePickerButton;
  20. @class CustomLabel;
  21. @class CustomButton;
  22. @interface MemberInputTableViewCell : UITableViewCell
  23. @property (weak, nonatomic) IBOutlet CustomLabel *lblInputTitle;
  24. @property (weak, nonatomic) IBOutlet CustomTextField2 *txtQuestion;
  25. @property (weak, nonatomic) IBOutlet DatePickerButton *btnDate;
  26. @end
  27. @interface MemberInviteTableViewCell : UITableViewCell
  28. @property (weak, nonatomic) IBOutlet CustomButton *btnInvite;
  29. @property (weak, nonatomic) IBOutlet CustomLabel *lblInviteDesc;
  30. @end
  31. @interface MemberEmailTableViewCell : UITableViewCell
  32. @property (weak, nonatomic) IBOutlet CustomLabel *lblEmail;
  33. @property (weak, nonatomic) IBOutlet CustomLabel *lblLevel;
  34. @property (weak, nonatomic) IBOutlet CustomButton *btnDelete;
  35. @end