1234567891011121314151617181920212223242526272829303132 |
- //
- // KSImageAlert.h
- // StudentDaya
- //
- // Created by Kyle on 2019/9/2.
- // Copyright © 2019 DayaMusic. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void(^AlertCallback)(BOOL isSure);
- NS_ASSUME_NONNULL_BEGIN
- @interface KSImageAlert : UIView
- @property (weak, nonatomic) IBOutlet UILabel *topTitle;
- @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
- @property (weak, nonatomic) IBOutlet UIButton *cancleButton;
- @property (weak, nonatomic) IBOutlet UIButton *sureButton;
- + (instancetype)shareInstance;
- - (void)sureCallback:(AlertCallback)callback;
- - (void)showAlert;
- - (void)hiddenAction;
- @end
- NS_ASSUME_NONNULL_END
|