|
//
// myAnswerTableController.h
// ThePaperBase
//
// Created by YoungLee on 15/8/19.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "TPTableViewController.h"
@protocol myAnswerTableDelegate <NSObject>
@optional
-(void) gotoWriteComment:(commentObjectVO*) comment;
-(void) gotoLogin;
-(void) gotoTopicInfo:(TopicInfoBO *)topic creatUse:(userBO*)user;
- (void)presentAskToUserContent:(commentObjectVO*)commentBO;
-(void) answerToShare:(UIImage*) img contenBO:(contentObjectBO*) contentBO;
@end
@interface myAnswerTableController : TPTableViewController
@property(nonatomic ,strong)id<myAnswerTableDelegate> answerTableDelegate;
- (void)scrollTableViewToTop;
@end
|