KWMBarandSelectView.h 821 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
//
//  KWMBarandSelectView.h
//  iCemarose
//
//  Created by 陈荣科 on 16/8/29.
//  Copyright © 2016年 kollway. All rights reserved.
//

#import <UIKit/UIKit.h>
@class KWMBarandSelectView; 
@protocol KWMBarandSelectViewDelegate <NSObject>

- (void)kwm_clickBackBtn;
- (void)kwm_HitShopCartBtn;
lee committed
15
- (void)kwm_hitSearchBtn;
houweibin committed
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36

@end

@interface KWMBarandSelectView : UIView

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

@property (weak, nonatomic) IBOutlet UIButton *btnShopCar;
@property (weak, nonatomic) IBOutlet UIView *vContent;
@property (weak, nonatomic) IBOutlet UILabel *lbCount;
@property (nonatomic) NSInteger count;

@property (weak, nonatomic) id<KWMBarandSelectViewDelegate> delegate;

- (void)setSelectBtn;

- (IBAction)onClickShopCartBtn:(id)sender;
- (IBAction)onClickBackBtn:(id)sender;


@end