InfoEditViewController.h 583 B

12345678910111213141516171819202122232425262728
  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. };
  17. typedef void(^EditComplete)(NSString *content);
  18. @interface InfoEditViewController : ModelBaseViewController
  19. @property (nonatomic, assign) InfoEditType editType;
  20. @property (nonatomic, copy) EditComplete complete;
  21. @end