// // TFPopupLoading.h // TFPopupDemo // // Created by zhutaofeng on 2019/5/13. // Copyright © 2019 ztf. All rights reserved. // #import #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