// // KWMCarCountView.h // iCemarose // // Created by 陈荣科 on 16/9/23. // Copyright © 2016年 kollway. All rights reserved. // #import <UIKit/UIKit.h> @protocol KWMCarCountViewDelegate <NSObject> - (void)kwm_touchShopCartBtn; - (void)kwm_touchSearchBtn; @end @interface KWMCarCountView : UIView @property (weak, nonatomic) IBOutlet UIView *vContent; @property (weak, nonatomic) IBOutlet UIButton *btnShopCart; @property (weak, nonatomic) IBOutlet UILabel *lbCount; @property (nonatomic) NSInteger count; @property (weak, nonatomic) id<KWMCarCountViewDelegate> delegate; - (IBAction)onClickShopCartBtn:(id)sender; - (IBAction)onClickSearchBtn:(id)sender; @end