VideoPlayBackViewController.h
1.32 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
40
41
42
43
44
45
//
// VideoPlayBackViewController.h
// SCIOLiveCN
//
// Created by huayu on 16/6/29.
// Copyright © 2016年 huayu. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "BaseViewController.h"
#import <MediaPlayer/MediaPlayer.h>
#import "ZXVideoPlayerController.h"
#import "CNLivePlayerController.h"
@interface VideoPlayBackViewController : BaseViewController<UITableViewDelegate,UITableViewDataSource,WKNavigationDelegate, WKUIDelegate>{
UIScrollView *backgroundView;
UIImageView *imageView;
UIButton *playBtn;
NSURL *movieUrl;
NSString *url;
WKWebView *relatedWebView;
WKWebView *_webView;
NSArray *_newsArray;
CGFloat videoHeight;
CGFloat descriptionHeight;
CGFloat graphicLiveHeight;
CGRect tableViewFrame;
UIImageView *lineImage1;
UIImageView *lineImage2;
UIImageView *upDownImage;
UIButton *upDownButton;
BOOL isShow;
NSDictionary *_dicArticle;
NSDictionary *_dictionary;
NSMutableArray *heightArr;
NSArray *fontArray;
int fontIndex;
}
@property (strong, nonatomic) UILabel *errorLabe;
@property (strong, nonatomic) UITableView *tableView;
@property (nonatomic, strong) ZXVideoPlayerController *videoController;
@property (nonatomic, strong) CNLivePlayerController *liveController;
-(id)initWithDictionary:(NSDictionary*)dictionary;
@end