HomeMemberAddViewController.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 CustomTextField;
  19. @class DatePickerButton;
  20. @class CustomLabel;
  21. @class CustomButton;
  22. @interface MemberAddedTableViewCell : UITableViewCell
  23. @property (weak, nonatomic) IBOutlet CustomTextField *txtEmail;
  24. @property (weak, nonatomic) IBOutlet CustomButton *btnRemove;
  25. @end
  26. @interface MemberInputTableViewCell : UITableViewCell
  27. @property (weak, nonatomic) IBOutlet CustomTextField *txtEmail;
  28. @property (weak, nonatomic) IBOutlet CustomButton *btnAdd;
  29. @end
  30. @interface MemberQuizTableViewCell : UITableViewCell
  31. @property (weak, nonatomic) IBOutlet CustomLabel *lblQuizTitle;
  32. @property (weak, nonatomic) IBOutlet CustomLabel *lblQuizInfo;
  33. @property (weak, nonatomic) IBOutlet DatePickerButton *btnDate;
  34. @property (weak, nonatomic) IBOutlet CustomTextField *txtQuestion;
  35. @end