OldVideoDetailViewController.h
1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// 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