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