//
//  KWMCategoryTitleView.m
//  iCemarose
//
//  Created by HouWeiBin on 2017/7/14.
//  Copyright © 2017年 kollway. All rights reserved.
//

#import "KWMCategoryTitleView.h"

@interface KWMCategoryTitleView()

@property(nonatomic,weak) IBOutlet UIView *vView;

@property(nonatomic,weak) IBOutlet UISearchBar *searchBar;

@property(nonatomic,weak) IBOutlet UILabel *lbCount;

@end

@implementation KWMCategoryTitleView

- (id)init{
    if (self=[super init]){
        [self addView];
    }
    return self;
}

- (id)initWithCoder:(NSCoder *)aDecoder {
    self = [super initWithCoder:aDecoder];
    if (self) {
        [self addView];
    }
    return self;
}

-(instancetype)initWithFrame:(CGRect)frame{
    if (self =[super initWithFrame:frame]) {
        [self addView];
    }
    return self;
}

-(void)awakeFromNib{
    [super awakeFromNib];
    [self addView];
}

-(void) addView{
    [[NSBundle mainBundle] loadNibNamed:NSStringFromClass([self class])
                                  owner:self
                                options:nil];
    
    self.vView.frame = CGRectMake(0, 0, self.frame.size.width, self.frame.size.height);
    [self addSubview:self.vView];
    [self initView];
}

-(void)initView{

}

-(void)setCount:(NSNumber *)count{
    _count = count;
    self.lbCount.text = count.stringValue;
}

-(IBAction)onClickSearchBar:(id)sender{
    if(self.delegate){
        [self.delegate kwm_onClickSearch];
    }
}

-(IBAction)onClickShopCart:(id)sender{
    if(self.delegate){
        [self.delegate kwm_onClickShopCart];
    }
}



@end