123456789101112131415161718192021 |
- //
- // KSTipsAlert.h
- // TeacherDaya
- //
- // Created by Kyle on 2021/5/21.
- // Copyright © 2021 DayaMusic. All rights reserved.
- //
- #import "BaseAlertView.h"
- typedef void(^TipsAlertCallback)(BOOL isSure);
- NS_ASSUME_NONNULL_BEGIN
- @interface KSTipsAlert : BaseAlertView
- + (instancetype)shareInstanceWithTitle:(NSString *)title descMessage:(NSString *)descMessage leftTitle:(NSString *)leftTitle rightTitle:(NSString *)rightTitle callback:(TipsAlertCallback)callback;
- @end
- NS_ASSUME_NONNULL_END
|