RegisterPushViewController.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. //
  2. // RegisterPushViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 5/26/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @interface RegisterPushViewController : JDViewController
  10. #pragma mark - Properties
  11. @property (assign, nonatomic) BOOL isCustomCreation;
  12. @property (strong, nonatomic) ItemModel *tmpItem;
  13. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  14. @property (weak, nonatomic) IBOutlet CustomButton *btnSelect;
  15. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
  16. #pragma mark - Instance Methods
  17. - (IBAction)btnSelectTouched:(id)sender;
  18. - (IBAction)btnCancelTouched:(id)sender;
  19. @end
  20. @class CustomTextView;
  21. @interface RegisterPushTableViewCell : UITableViewCell
  22. @property (weak, nonatomic) IBOutlet CustomTextView *txvMessage;
  23. @end
  24. @class CustomRadioButton;
  25. @interface RegisterPushMethodTableViewCell : UITableViewCell
  26. @property (weak, nonatomic) IBOutlet CustomButton *btnMethodTitle;
  27. @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoNotificationCenter;
  28. @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoPopup;
  29. @property (weak, nonatomic) IBOutlet CustomLabel *lblMethodDesc;
  30. @end
  31. @class CustomCheckBox;
  32. @class CustomLabel;
  33. @interface RegisterPushMemberTableViewCell : UITableViewCell
  34. @property (weak, nonatomic) IBOutlet CustomLabel *lblMemberName;
  35. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkSelect;
  36. @end
  37. @interface RegisterPushMemberTitleViewCell : UITableViewCell
  38. @property (weak, nonatomic) IBOutlet CustomButton *btnPushMemberTitle;
  39. @end