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