Files
featherVoice/QXLive/Third/TFPopup/TFPopupLoading.h

26 lines
538 B
C
Raw Normal View History

2026-01-27 19:10:51 +08:00
//
// TFPopupLoading.h
// TFPopupDemo
//
// Created by zhutaofeng on 2019/5/13.
// Copyright © 2019 ztf. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "TFPopupConst.h"
@class TFPopupLoading;
typedef void(^TFPopupLoadingBlock)(TFPopupLoading *toast);
@interface TFPopupLoading : UIView
@property(nonatomic,strong)UIActivityIndicatorView *indicatorView;
@property(nonatomic,strong)UILabel *msgLabel;
+(void)tf_show:(UIView *)inView animationType:(TFAnimationType)animationType;
+(void)tf_hide:(UIView *)inView;
@end