12345678910111213141516171819202122 |
- //
- // HCPushAlertView.h
- // hc
- //
- // Created by hc on 2018/10/12.
- // Copyright © 2018年 hc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface HCPushAlertView : 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
|