| 1234567891011121314151617181920212223242526272829303132 |
- //
- // InfoEditViewController.h
- // model
- //
- // Created by liufei on 2018/7/25.
- // Copyright © 2018年 Mine. All rights reserved.
- //
- #import "ModelBaseViewController.h"
- typedef NS_ENUM(NSInteger, InfoEditType) {
- InfoEditTypeName,
- InfoEditTypeAge,
- InfoEditTypeHeight,
- InfoEditTypeWeight,
- InfoEditTypeSigature,
- InfoEditTypeVprice,
- InfoEditTypeOccupation,
- InfoEditTypeCollege,
- InfoEditTypeHobby,
- InfoEditTypeConstellation
- };
- typedef void(^EditComplete)(NSString *content);
- @interface InfoEditViewController : ModelBaseViewController
- @property (nonatomic, assign) InfoEditType editType;
- @property (nonatomic, copy) EditComplete complete;
- @end
|