OCBarrageManager.h 605 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // OCBarrageView.h
  3. // TestApp
  4. //
  5. // Created by QMTV on 2017/8/22.
  6. // Copyright © 2017年 LFC. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "OCBarrageRenderView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface OCBarrageManager : NSObject {
  12. OCBarrageRenderView *_renderView;
  13. }
  14. @property (nonatomic, strong, readonly) OCBarrageRenderView *renderView;
  15. @property (nonatomic, assign, readonly) OCBarrageRenderStatus renderStatus;
  16. - (void)start;
  17. - (void)pause;
  18. - (void)resume;
  19. - (void)stop;
  20. - (void)renderBarrageDescriptor:(OCBarrageDescriptor *)barrageDescriptor;
  21. @end
  22. NS_ASSUME_NONNULL_END