12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- //
- // ShowtipTool.h
- // IntercontinentalHealth
- //
- // Created by zsj on 2018/5/30.
- // Copyright © 2018年 ITpower. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @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
|