| 1234567891011121314151617 |
- //
- // CommonEditorCellSwitch.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 14-7-17.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface CommonEditorCellSwitch : UITableViewCell
- @property (strong, nonatomic) IBOutlet UILabel *labelTitle;
- @property (strong, nonatomic) IBOutlet UISwitch *switchCtrl;
- @property (strong, nonatomic) IBOutlet UILabel *starMark;
- @end
|