|
//
// myDynamicTableController.h
// ThePaperBase
//
// Created by YoungLee on 15/8/31.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "TPTableViewController.h"
@protocol myDynamicTableDelegate <NSObject>
@optional
-(void) gotoCommentWith:(commentObjectVO *) comment;
-(void) gotoDetail:(id) data;
-(void) gotoAskInfo:(commentObjectVO*)comment;
-(void) gotoLogin:(userBO*)user;
-(void) setLabel:(CGPoint) contentOffset name:(NSString*)str;//上推效果
-(void) gotoShare:(UIImage*) img contentBO:(contentObjectBO*) contentBO;
@end
@interface myDynamicTableController : TPTableViewController
@property(nonatomic, strong)commentObjectVO *commentBo;
@property(nonatomic, strong)userBO *userBo;
@property(nonatomic, weak) id<myDynamicTableDelegate> delegate;
- (void)scrollTableViewToTop;
@end
|