You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
605 B
30 lines
605 B
// |
|
// OCBarrageView.h |
|
// TestApp |
|
// |
|
// Created by QMTV on 2017/8/22. |
|
// Copyright © 2017年 LFC. All rights reserved. |
|
// |
|
|
|
#import <UIKit/UIKit.h> |
|
#import "OCBarrageRenderView.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface OCBarrageManager : NSObject { |
|
OCBarrageRenderView *_renderView; |
|
} |
|
|
|
@property (nonatomic, strong, readonly) OCBarrageRenderView *renderView; |
|
@property (nonatomic, assign, readonly) OCBarrageRenderStatus renderStatus; |
|
|
|
- (void)start; |
|
- (void)pause; |
|
- (void)resume; |
|
- (void)stop; |
|
|
|
- (void)renderBarrageDescriptor:(OCBarrageDescriptor *)barrageDescriptor; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|