| 123456789101112131415161718192021222324252627282930313233 |
- //
- // KSImageAlert.h
- // StudentDaya
- //
- // Created by Kyle on 2019/9/2.
- // Copyright © 2019 DayaMusic. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "BaseAlertView.h"
- typedef void(^AlertCallback)(BOOL isSure);
- NS_ASSUME_NONNULL_BEGIN
- @interface KSImageAlert : BaseAlertView
- @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
|