| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- //
- // RegisterPushViewController.h
- // kneet
- //
- // Created by Jason Lee on 5/26/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @interface RegisterPushViewController : JDViewController
- #pragma mark - Properties
- @property (assign, nonatomic) BOOL isCustomCreation;
- @property (strong, nonatomic) ItemModel *tmpItem;
- @property (weak, nonatomic) IBOutlet UITableView *tableView;
- @property (weak, nonatomic) IBOutlet CustomButton *btnSelect;
- @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
- #pragma mark - Instance Methods
- - (IBAction)btnSelectTouched:(id)sender;
- - (IBAction)btnCancelTouched:(id)sender;
- @end
- @class CustomTextView;
- @interface RegisterPushTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomTextView *txvMessage;
- @end
- @class CustomRadioButton;
- @interface RegisterPushMethodTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomButton *btnMethodTitle;
- @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoNotificationCenter;
- @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoPopup;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblMethodDesc;
- @end
- @class CustomCheckBox;
- @class CustomLabel;
- @interface RegisterPushMemberTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblMemberName;
- @property (weak, nonatomic) IBOutlet CustomCheckBox *chkSelect;
- @end
- @interface RegisterPushMemberTitleViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomButton *btnPushMemberTitle;
- @end
|