KSTipsAlert.h 498 B

123456789101112131415161718192021
  1. //
  2. // KSTipsAlert.h
  3. // TeacherDaya
  4. //
  5. // Created by Kyle on 2021/5/21.
  6. // Copyright © 2021 DayaMusic. All rights reserved.
  7. //
  8. #import "BaseAlertView.h"
  9. typedef void(^TipsAlertCallback)(BOOL isSure);
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface KSTipsAlert : BaseAlertView
  12. + (instancetype)shareInstanceWithTitle:(NSString *)title descMessage:(NSString *)descMessage leftTitle:(NSString *)leftTitle rightTitle:(NSString *)rightTitle callback:(TipsAlertCallback)callback;
  13. @end
  14. NS_ASSUME_NONNULL_END