热更新demo

topicContentTableController.h 1.1KB

    // // 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)gotoAnswerForAsk:(commentObjectVO *)comment; -(void) gotoHotAskListHome:(commentObjectVO*)comment; -(void) answerByCreatInTopic:(commentObjectVO*)commentBO; -(void) topicTableToAsk; - (void)shareBtnHandler:(contentObjectBO *)contentBO WithButton:(UIButton *)btn; - (void)gotoAsk; -(void) gotoShare:(UIImage*) img contentBO:(contentObjectBO*) contentBO; - (void)refreshTable; @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; @property(nonatomic, strong)userBO *userBo; - (void)reloadAskCellAfterAsking; - (void)refreshNumAfterAsk; -(void) changeAttention; -(BOOL) getAttentionStatus; @end