VideoPlayBackViewController.h 1.32 KB
//
//  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