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