VideoDetailPresent.h 601 Bytes
//
//  VideoDetailPresent.h
//  CNLiveScioLive
//
//  Created by CNLive on 2021/2/25.
//  Copyright © 2021 CNLive. All rights reserved.
//

#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN
@protocol ProgramDelegate<NSObject>
@required
-(void)programDetail:(NSString *)content;
-(void)reloadWithData:(NSArray *)dataArray;
@end

@interface VideoDetailPresent : NSObject
@property(nonatomic,weak) id currentView;
@property(nonatomic,weak)id<ProgramDelegate> delegate;

-(void)requestProgram:(NSString *)reportId;
-(void)loadRelatedInformation:(NSString *)reportId;
@end

NS_ASSUME_NONNULL_END