澎湃iPad上线版本

messageAnswersController.h 1.1KB

    // // myAsksController.h // ThePaperHD // // Created by scar1900 on 15/3/30. // Copyright (c) 2015年 scar1900. All rights reserved. // #import "TPTableViewController.h" #import "hotAskContentCell.h" #import "hotAnswerContentCell.h" #import "hotAskMoreFootCell.h" #import "hotAskListHomeController.h" #import "MLNavigationController.h" @protocol myAnswerDelegate <NSObject> @optional -(void) gotoUserGambit:(commentObjectVO*) comment; -(void) asksToAskCenterTopic:(TopicInfoBO*)topic user:(userBO*) user; -(void) msgAnswerToNews:(NSDictionary*) dic; -(void) msgAnswerToTopic:(NSDictionary*)dic; @end @interface messageAnswersController : TPTableViewController<askFootMoreDelegate,answerContentCellDelegate> @property(nonatomic, strong)NSMutableArray *qaList; @property(nonatomic, strong)NSMutableArray *qaDataSource; //页面真实数据源(新追问) @property(nonatomic, strong)NSMutableArray *qaHeightArray; @property(nonatomic, strong)UIView *noDataBack; @property(nonatomic, weak)id<myAnswerDelegate> myAsksDelegate; - (BOOL)checkIfNoData:(NSArray*)list; @end