// // ShowtipTool.h // IntercontinentalHealth // // Created by zsj on 2018/5/30. // Copyright © 2018年 ITpower. All rights reserved. // #import @interface ShowtipTool : NSObject /** 加载中 @param status <#status description#> */ +(void)showLoadingWithStatus:(NSString *)status; /** 提示info信息 @param status <#status description#> */ +(void)showInfoWithStatus:(NSString*)status; /** 成功提示 @param status <#status description#> */ +(void)showSuccessWithStatus:(NSString*)status; /** 失败提示 @param status <#status description#> */ +(void)showErrorWithStatus:(NSString*)status; /** 直接显示消息 不带图片显示 @param status <#status description#> */ +(void)showMessageWithStatus:(NSString *)status; /** 一直显示消息不消失 @param status <#status description#> */ +(void)showMessageLongWithStatus:(NSString *)status; //+(void)showWithStatus:(NSString *)status; +(void)hide; +(void)showProgress:(CGFloat )progress Status:(NSString *)status; @end