| 123456789101112131415161718192021 |
- //
- // YBLiveEndView.h
- // YBVideo
- //
- // Created by YB007 on 2019/11/30.
- // Copyright © 2019 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void (^LiveEndBlock)(void);
- @interface YBLiveEndView : UIView
- @property(nonatomic,copy)LiveEndBlock liveEndEvent;
- -(void)updateData:(NSDictionary *)dic;
- @end
|