|
//
// topicListTopView.h
// ThePaperHD
//
// Created by liyuan on 15/7/2.
// Copyright (c) 2015年 scar1900. All rights reserved.
// 话题列表筛选控件
#import <UIKit/UIKit.h>
@protocol topicListTopDelegate <NSObject>
-(void) categoryName:(categoryBO*) bo viewList:(NSMutableArray *) array sort:(NSString*)sort;
-(void) hotAndLaster:(NSDictionary *) dict;
@end
@interface topicListTopView : UIView
@property(nonatomic, strong)NSMutableArray *dataList;
@property(nonatomic, strong)UIView *filterView;
@property(nonatomic, weak)id<topicListTopDelegate> topicTopDelegate;
@end
|