| 1234567891011121314151617181920 |
- //
- // RootModeCell.h
- // RA Image
- //
- // Created by Jack on 2017/5/2.
- // Copyright © 2017年 USAI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface RootModeCell : UITableViewCell
- @property (nonatomic,copy) NSString *mode;
- @property (nonatomic,copy) NSString *code_name;
- @property (nonatomic,assign) BOOL enable;
- @property (nonatomic,copy) NSString *desc;
- - (void) setMode:(NSString *)mode desc:(NSString *)desc;
- @end
|