|
//
// liveListController.h
// ThePaperHD
//
// Created by scar1900 on 15/3/10.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "TPTableViewController.h"
#import "liveViewModel.h"
@protocol liveListDelegate <NSObject>
- (void)listRefreshed:(liveInfoBO*)liveInfo;
- (void)beginToShare:(NSString*)shareText button:(UIButton *)btn;
- (void)refreshData;
- (void)videoEnterFullScreen:(BOOL)isEnterFullScreen;
@end
@interface liveListController : TPTableViewController
@property(nonatomic, strong)NSString *nodeId;
@property(nonatomic, strong)liveDetailPageVO *livePageBO;
@property(nonatomic, assign)BOOL isVideoPlaying;
@property(nonatomic, weak)id<liveListDelegate> delegate;
//@property(nonatomic, strong)ALMoviePlayerController *moviePlayerController;
- (void)stopAndRemoveVideo;
- (void)reloadTableWithFontChange;
@property(nonatomic, strong)liveViewModel *viewModel;
@end
|