RAEditBaseModel.h 486 B

1234567891011121314151617181920212223242526
  1. //
  2. // RAEditBaseModel.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/6/4.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef enum {
  10. RAEditTypeLabel = 0,
  11. RAEditTypeInput = 1,
  12. RAEditTypeMultInput = 2,
  13. RAEditTypePhoto = 3
  14. } RAEditType;
  15. @interface RAEditBaseModel : NSObject
  16. @property (nonatomic,assign) RAEditType type;
  17. @property (nonatomic,copy) NSString *title;
  18. @property (nonatomic,assign) CGFloat height;
  19. @end