|
//
// topicListController.h
// ThePaperHD
//
// Created by scar1900 on 15/4/23.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "TPCollectionController.h"
//话题列表
@interface topicListController : TPCollectionController
@property(nonatomic, strong)NSMutableArray *dataList;
@property(nonatomic, strong)NSMutableArray *cateList;
@property(nonatomic, strong)NSMutableArray *bannerList;
@property(nonatomic, strong)categoryBO *catagoryInfo;
@property(nonatomic, strong)NSString *sort;
@property(nonatomic, assign)BOOL bannerShow;
@property(nonatomic, assign)UIInterfaceOrientation orientation;
@end
|