|
//
// filterSelectBtn.h
// ThePaperHD
//
// Created by scar1900 on 15/4/27.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol filterSelctionDelegate <NSObject>
- (void)selectFilterBtn:(categoryBO*)cate;
@end
@interface filterSelectBtn : UIView
@property(nonatomic, assign)BOOL isHaveLine;
@property(nonatomic, strong)categoryBO *category;
@property(nonatomic, weak)id<filterSelctionDelegate> delegate;
- (id)initWithFrame:(CGRect)frame
category:(categoryBO*)cate;
- (void)setBtnSelected:(BOOL)selected;
@end
|