KWMCarCountView.h 676 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9 10 11 12 13
//
//  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;
lee committed
14
- (void)kwm_touchSearchBtn;
houweibin committed
15 16 17 18 19 20 21 22 23 24

@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;
lee committed
25
- (IBAction)onClickSearchBtn:(id)sender;
houweibin committed
26 27 28


@end