OldVideoDetailViewController.h 1.13 KB
//
//  OldVideoDetailViewController.h
//  CNLiveScioLive
//
//  Created by CNLive-zxw on 2018/9/27.
//  Copyright © 2018年 CNLive. All rights reserved.
//

#import "ZXVideoPlayerController.h"
#import "CNLiveMyCollectionViewController.h"
#import "CNLivePlayerController.h"
#import "BaseViewController.h"
#import <WebKit/WebKit.h>

@interface OldVideoDetailViewController : BaseViewController<UITableViewDelegate,UITableViewDataSource,WKUIDelegate,WKNavigationDelegate>{
    UIScrollView *backgroundView;
    UIImageView *imageView;
    UIButton *playBtn;
    NSURL *movieUrl;
    NSString *url;
    UIImage *bgImg;
    WKWebView *_webView;
    NSArray *_newsArray;
    CGFloat videoHeight;
    NSDictionary *_dictionary;
    NSMutableArray *heightArr;
    NSArray *fontArray;
    int fontIndex;
}
@property (strong, nonatomic) UILabel *errorLabe;
@property (strong, nonatomic) UITableView *tableView;
@property (strong, nonatomic) ZXVideoPlayerController *videoController;

@property (nonatomic, strong) CNLivePlayerController *liveController;

@property (copy, nonatomic) NSString *authorName;

- (id)initWithDictionary:(NSDictionary*)dictionary;
@end