|
//
// CateView.h
// ThePaperBase
//
// Created by zhousan on 15/9/2.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol CateViewDelegate <NSObject>
- (void)cateButtonClickWith:(categoryBO *)cate;
@end
@interface CateView : UIView
@property (nonatomic, strong) NSMutableArray *cateListArray;
@property (nonatomic, strong) id <CateViewDelegate> delegate;
@end
|