| 1234567891011121314151617181920212223242526 |
- //
- // RAEditBaseModel.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/6/4.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef enum {
-
- RAEditTypeLabel = 0,
- RAEditTypeInput = 1,
- RAEditTypeMultInput = 2,
- RAEditTypePhoto = 3
-
- } RAEditType;
- @interface RAEditBaseModel : NSObject
- @property (nonatomic,assign) RAEditType type;
- @property (nonatomic,copy) NSString *title;
- @property (nonatomic,assign) CGFloat height;
- @end
|