|
//
// 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 startPoint:(CGPoint)startPoint;
- (void)shareIndexPath:(NSIndexPath*) indexPath;
-(void) statusBarHidden:(BOOL) isHidden;
-(void) needRefrshPage;
@end
@interface liveListController : TPTableViewController
@property(nonatomic, strong)liveViewModel *viewModel;
@property(nonatomic, strong)NSString *nodeId;
@property(nonatomic, strong)liveDetailPageVO *livePageBO;
@property(nonatomic, assign)BOOL isVideoPlaying;
@property(nonatomic, weak)id<liveListDelegate> delegate;
- (void)stopAndRemoveVideo;
- (void)reloadTableWithFontChange;
@end
|