|
//
// channelTopicCateCell.h
// ThePaperBase
//
// Created by YoungLee on 15/8/5.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol channelTopicCateDelegate <NSObject>
-(void) returnCate:(categoryBO*) cate index:(NSInteger) index;
@end
@interface channelTopicCateCell : UITableViewCell
@property(nonatomic, strong)NSMutableArray *cateList;
@property(nonatomic, weak)id<channelTopicCateDelegate> delegate;
@end
|