1234567891011121314151617181920 |
- //
- // KBFiveStartAlertView.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/10/12.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KBFiveStartAlertView : UIView
- - (instancetype)initWithFrame:(CGRect)frame text:(NSString *)text;
- @property (nonatomic, copy) void (^cancelBlock)(void);
- @property (nonatomic, copy) void (^sureBlock)(void);
- @end
- NS_ASSUME_NONNULL_END
|