| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // MobilesOverViewController.h
- // kneet
- //
- // Created by Jason Lee on 6/12/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @protocol MobileDeviceModel;
- @class CustomLabel;
- @class CustomButton;
- @interface MobilesOverViewController : JDViewController
- #pragma mark - Properties
- @property (strong, nonatomic) NSArray<MobileDeviceModel> *mobileList;
- @property (assign, nonatomic) BOOL checkedAutoLogin;
- @property (weak, nonatomic) IBOutlet UITableView *tableView;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblActionInfo;
- @property (weak, nonatomic) IBOutlet CustomButton *btnConfirm;
- @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
- #pragma mark - Instance Methods
- - (IBAction)btnConfirmTouched:(id)sender;
- - (IBAction)btnCancelTouched:(id)sender;
- @end
- @class CustomRadioButton;
- @interface MobilesOverTitleViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblNotify;
- @end
- @interface MobilesOverTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblMobileName;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblCreateDate;
- @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoSelect;
- @end
|