| 12345678910111213141516171819 |
- //
- // WithdrawController.h
- // 千模
- //
- // Created by Drew on 2018/11/4.
- // Copyright © 2018年 MUMEI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^callback)(NSString *string);
- @interface WithdrawController : UIViewController
- @property(nonatomic, copy) callback callback;
- @end
- NS_ASSUME_NONNULL_END
|