HomeMemberAddViewController.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 CustomTableView *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 CustomTextField;
  19. @class DatePickerButton;
  20. @class CustomLabel;
  21. @class CustomButton;
  22. @interface MemberHeaderTableViewCell : KNTableViewCell
  23. @end
  24. @interface MemberAddedTableViewCell : KNTableViewCell
  25. @property (weak, nonatomic) IBOutlet CustomTextField *txtEmail;
  26. @property (weak, nonatomic) IBOutlet CustomButton *btnRemove;
  27. @end
  28. @interface MemberInputTableViewCell : KNTableViewCell
  29. @property (weak, nonatomic) IBOutlet CustomTextField *txtEmail;
  30. @property (weak, nonatomic) IBOutlet CustomButton *btnAdd;
  31. @end
  32. @interface MemberQuizTableViewCell : KNTableViewCell
  33. @property (weak, nonatomic) IBOutlet DatePickerButton *btnDate;
  34. @property (weak, nonatomic) IBOutlet CustomTextField *txtQuestion;
  35. @property (weak, nonatomic) IBOutlet CustomTextField *txtSelfQuiz;
  36. @property (weak, nonatomic) IBOutlet CustomButton *btnQuizSelect;
  37. @property (weak, nonatomic) IBOutlet UIView *viewSelfQuiz;
  38. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *viewHeight;
  39. -(void)showDirectInputArea:(BOOL)isShow;
  40. @end