|
//
// topicCollectionListController.h
// ThePaperBase
//
// Created by Huixin on 15/10/12.
// Copyright © 2015年 scar1900. All rights reserved.
//
#import "TPTableViewController.h"
@protocol topicCollectionListDelegate <NSObject>
-(void) gotoInfo:(TopicInfoBO*) topicBO;
@end
@interface topicCollectionListController : TPTableViewController
@property(nonatomic, strong)NSMutableArray *dataList;
@property(nonatomic, weak)id<topicCollectionListDelegate> delegate;
@end
|