|
//
// topicDetailListController.h
// ThePaperBase
//
// Created by zhousan on 15/8/12.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "TPTableViewController.h"
@protocol topicDetailListDelegate <NSObject>
- (void)refreshObjInfo:(objInfoBO*)infoBO;
- (void)askPushToLoginView;
- (void)presentAskToUserContent:(commentObjectVO*)commentBO;
- (void)clickToAsk:(UIButton*)btn;
- (void)topicDetailToShare:(UIImage*) img contenBO:(contentObjectBO*)contentBO;
@end
@interface topicDetailListController : TPTableViewController
@property(nonatomic, strong)NSString* commmentId;
@property(nonatomic, weak)id<topicDetailListDelegate> delegate;
@property(nonatomic, strong)NSString *topicHostId;
@property(nonatomic, strong)NSString *answerNums;
@property(nonatomic, strong)NSString *topicShareUrl;
@property(nonatomic, strong)NSString *topicShareTitle;
@end
|