CommonEditorCellSwitch.h 494 B

123456789101112131415161718
  1. //
  2. // CommonEditorCellSwitch.h
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 14-7-17.
  6. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface CommonEditorCellSwitch : UITableViewCell
  10. @property (strong, nonatomic) IBOutlet UILabel *labelTitle;
  11. @property (strong, nonatomic) IBOutlet UISwitch *switchCtrl;
  12. @property (weak, nonatomic) IBOutlet UILabel *labelDesc;
  13. @property (strong, nonatomic) IBOutlet UILabel *starMark;
  14. @end