|
//
// hotController.h
// ThePaperBase
//
// Created by 李元元 on 16/5/11.
// Copyright © 2016年 scar1900. All rights reserved.
//
#import "TPHttpController.h"
#import "TPMovieContent.h"
#import "TPImageScannerController.h"
#import "WebViewJavascriptBridge.h"
@protocol hotContentDelegate <NSObject>
- (void)videoEnterFullScreen:(BOOL)isEnterFullScreen;
- (void)videoClosedWithEmbeddedFullScrrenn;
- (void)didPlayVedio;
- (void)didEndPlayVedio;
@end
@interface hotController : newPageBaseController
@property(nonatomic, strong)contDetailPageVO *detailContentBO;
@property(nonatomic, strong)UIWebView *webView;
@property(nonatomic, strong)TPMovieContent *moviePlayerController;
@property(nonatomic, weak)id<hotContentDelegate> delegate;
@property(nonatomic, strong)WebViewJavascriptBridge *bridge;
- (void)turnToright;
- (void)turnMovieViewToPortrait;
- (void)stopAndRemoveVideo;
- (void)reloadTableWithFontChange;
@end
|