WithdrawController.h 350 B

12345678910111213141516171819
  1. //
  2. // WithdrawController.h
  3. // 千模
  4. //
  5. // Created by Drew on 2018/11/4.
  6. // Copyright © 2018年 MUMEI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^callback)(NSString *string);
  11. @interface WithdrawController : UIViewController
  12. @property(nonatomic, copy) callback callback;
  13. @end
  14. NS_ASSUME_NONNULL_END