// // myFocusTableController.h // ThePaperBase // // Created by YoungLee on 15/8/19. // Copyright (c) 2015年 scar1900. All rights reserved. // #import "TPTableViewController.h" @protocol myFocusTableDelegate @optional -(void) editIsHidden:(BOOL) isHidden; -(void) gotoTopicInfo:(TopicInfoBO *)topic creatUse:(userBO*)user; -(void) focusToUserInfo:(commentObjectVO*)comment; @end @interface myFocusTableController : TPTableViewController @property(nonatomic, assign)BOOL isEdit; @property(nonatomic, weak)id delegate; - (void)scrollTableViewToTop; @end