|
//
// topicListController.h
// ThePaperBase
//
// Created by YoungLee on 15/8/10.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "TPTableViewController.h"
@protocol topicListDelegate <NSObject>
-(void) gotoInfo:(TopicInfoBO*) topicBO;
@end
@interface topicListController : TPTableViewController
@property(nonatomic, strong)NSString *hotOrLastr;
@property(nonatomic, strong)categoryBO *cateBO;
@property(nonatomic, strong)NSString* currentIndex;
@property(nonatomic, strong)id<topicListDelegate> delegate;
- (void)pageChangeBegin:(NSInteger)index ;
- (void)scrollTableViewToTop;
- (void)changeHotOrLast:(NSString*)hotOrLast;
@end
|