// // myFocusController.h // ThePaperHD // // Created by scar1900 on 15/3/30. // Copyright (c) 2015年 scar1900. All rights reserved. // #import "messageAsksController.h" @protocol myFocusDelegate @optional - (void)deleteAllFocus; - (void)remoteSuccess; -(void) gotoUserGambit:(commentObjectVO*) comment; -(void) goToTopicInfo:(TopicInfoBO*)topic user:(userBO*)user; -(void) foucsToTopicList; -(void) msgFocusToNews:(NSDictionary*) dic; -(void) msgFocusToTopic:(NSDictionary*)dic; @end @interface messageFocusController : TPTableViewController @property(nonatomic, strong)NSMutableArray *qaList; @property(nonatomic, strong)NSMutableArray *qaDataSource; //页面真实数据源(新追问) @property(nonatomic, strong)NSMutableArray *qaHeightArray; @property(nonatomic, strong)UIView *noDataBack; @property(nonatomic, weak)id delegate; @end