| 123456789101112131415161718 |
- //
- // ApplyRecommendView.h
- // model
- //
- // Created by Drew on 2018/11/7.
- // Copyright © 2018 Mine. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ApplyRecommendView : UIView
- + (void)showIntoView:(UIView *)view confirm:(void(^)(void))confirmBlock;
- @property(nonatomic, copy) void (^confirmBlock)(void);
- @end
- NS_ASSUME_NONNULL_END
|