WFCUGeneralModifyViewController.h 499 B

12345678910111213141516
  1. //
  2. // GeneralModifyViewController.h
  3. // WildFireChat
  4. //
  5. // Created by heavyrain lee on 24/12/2017.
  6. // Copyright © 2017 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface WFCUGeneralModifyViewController : UIViewController
  10. @property (nonatomic, strong)NSString *defaultValue;
  11. @property (nonatomic, strong)NSString *titleText;
  12. @property (nonatomic, assign)BOOL canEmpty;
  13. @property (nonatomic, strong)void (^tryModify)(NSString *newValue, void (^result)(BOOL success));
  14. @end