TapCommon-Unity/Plugins/iOS/TapCommonSDK.framework/Headers/TDSCommonDialogView.h

32 lines
560 B
C
Raw Normal View History

2022-07-25 16:02:45 +08:00
//
// TDSCommonDialogView.h
// TapCommonSDK
//
// Created by Bottle K on 2021/4/29.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@protocol TDSCommonDialogProtocol <NSObject>
- (void)onReloadData;
- (void)onClose;
@end
@interface TDSCommonDialogView : UIView
@property (nonatomic, weak) id<TDSCommonDialogProtocol> delegate;
@property (nonatomic, strong) UIView *dialogView;
//loading
@property (nonatomic, strong) UIView *loadingView;
//reload
@property (nonatomic, strong) UIView *reloadView;
- (void)closeDialog;
@end
NS_ASSUME_NONNULL_END