// // BoxHeartbeatAlertTool.h // 隐私保护 // // Created by xd h on 2025/2/7. // #import NS_ASSUME_NONNULL_BEGIN /** * */ typedef void (^BoxHeartbeat_DidClickButFun) (NSInteger tag); // 1 2 3 //表示点击弹框按钮的 index @interface BoxHeartbeatAlertTool : NSObject + (instancetype)shareInstance; #pragma mark 网络异常弹框 type == 1 全部心跳异常 2 是部分异常 -(void)showBoxHeartbeatAlertFun:(NSInteger)type didClickBut:(BoxHeartbeat_DidClickButFun)didClickBut; #pragma mark 网络异常弹框 消失 - (void)dismissErrorAlertFun; @end NS_ASSUME_NONNULL_END