|
//
// topicContentTableController.h
// ThePaperHD
//
// Created by scar1900 on 15/5/10.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "TPTableViewController.h"
@protocol topicTableDelegate <NSObject>
@optional
-(void) gotoHotAskListHome:(commentObjectVO*)comment;
-(void) answerByCreatInTopic:(commentObjectVO*)commentBO;
-(void) topicTableToAsk;
@end
@interface topicContentTableController : TPTableViewController
@property(nonatomic, strong)UILabel *statusLabel;
@property(nonatomic, strong)TopicInfoBO *topicInfo;
@property(nonatomic, strong)topicInfoPageVO *topicPageVO;
@property(nonatomic, assign)BOOL isCreat;
@property(nonatomic, strong)NSString* currentIndex;
@property(nonatomic, weak)id<topicTableDelegate> topicTableDelegate;
- (void)reloadAskCellAfterAsking;
- (void)refreshNumAfterAsk;
-(void) changeAttention;
-(BOOL) getAttentionStatus;
@end
|