34 lines
606 B
C
34 lines
606 B
C
|
|
//
|
||
|
|
// HelpPageDefine.h
|
||
|
|
// LiveChat
|
||
|
|
//
|
||
|
|
// Created by 码农教育6 on 2018/10/22.
|
||
|
|
// Copyright © 2018年 manongjiaoyu. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface HelpPageDefine : NSObject
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 提示信息
|
||
|
|
* @time 1.5秒后消失
|
||
|
|
*/
|
||
|
|
+(void)showMessage:(NSString *)message;
|
||
|
|
|
||
|
|
+(void)showMessage:(NSString *)message duration:(double)time;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 菊花刷新及消失
|
||
|
|
* @subview 父视图
|
||
|
|
*/
|
||
|
|
- (void)creatActivityIndicatorView:(UIView *)subview;
|
||
|
|
- (void)stopActivityIndicatorView;
|
||
|
|
- (void)stopImageLoading;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|