12345678910111213141516171819202122232425 |
- //
- // XYQuickMatchTopMatchSuccessView.h
- // Starbuds
- //
- // Created by gy on 2020/12/4.
- // Copyright © 2020 翟玉磊. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface XYQuickMatchTopMatchSuccessView : UIView
- - (void)setup;
- - (void)reload:(NSMutableArray *)dataArrs;
- - (void)clear;
- @property (nonatomic, assign) BOOL isViewAppear;
- @end
- NS_ASSUME_NONNULL_END
|