MobilesOverViewController.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // MobilesOverViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 6/12/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @protocol MobileDeviceModel;
  10. @class CustomLabel;
  11. @class CustomButton;
  12. @interface MobilesOverViewController : JDViewController
  13. #pragma mark - Properties
  14. @property (strong, nonatomic) NSArray<MobileDeviceModel> *mobileList;
  15. @property (assign, nonatomic) BOOL checkedAutoLogin;
  16. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  17. @property (weak, nonatomic) IBOutlet CustomLabel *lblActionInfo;
  18. @property (weak, nonatomic) IBOutlet CustomButton *btnConfirm;
  19. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
  20. #pragma mark - Instance Methods
  21. - (IBAction)btnConfirmTouched:(id)sender;
  22. - (IBAction)btnCancelTouched:(id)sender;
  23. @end
  24. @class CustomRadioButton;
  25. @interface MobilesOverTitleViewCell : UITableViewCell
  26. @property (weak, nonatomic) IBOutlet CustomLabel *lblNotify;
  27. @end
  28. @interface MobilesOverTableViewCell : UITableViewCell
  29. @property (weak, nonatomic) IBOutlet CustomLabel *lblMobileName;
  30. @property (weak, nonatomic) IBOutlet CustomLabel *lblCreateDate;
  31. @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoSelect;
  32. @end