InfoEditViewController.h 689 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // InfoEditViewController.h
  3. // model
  4. //
  5. // Created by liufei on 2018/7/25.
  6. // Copyright © 2018年 Mine. All rights reserved.
  7. //
  8. #import "ModelBaseViewController.h"
  9. typedef NS_ENUM(NSInteger, InfoEditType) {
  10. InfoEditTypeName,
  11. InfoEditTypeAge,
  12. InfoEditTypeHeight,
  13. InfoEditTypeWeight,
  14. InfoEditTypeSigature,
  15. InfoEditTypeVprice,
  16. InfoEditTypeOccupation,
  17. InfoEditTypeCollege,
  18. InfoEditTypeHobby,
  19. InfoEditTypeConstellation
  20. };
  21. typedef void(^EditComplete)(NSString *content);
  22. @interface InfoEditViewController : ModelBaseViewController
  23. @property (nonatomic, assign) InfoEditType editType;
  24. @property (nonatomic, copy) EditComplete complete;
  25. @end