YBLiveEndView.h 323 B

123456789101112131415161718192021
  1. //
  2. // YBLiveEndView.h
  3. // YBVideo
  4. //
  5. // Created by YB007 on 2019/11/30.
  6. // Copyright © 2019 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void (^LiveEndBlock)(void);
  10. @interface YBLiveEndView : UIView
  11. @property(nonatomic,copy)LiveEndBlock liveEndEvent;
  12. -(void)updateData:(NSDictionary *)dic;
  13. @end