KWMSearchFeedBackView.h 898 Bytes
//
//  KWMSearchFeedBackView.h
//  iCemarose
//
//  Created by 陈荣科 on 16/9/1.
//  Copyright © 2016年 kollway. All rights reserved.
//

#import <UIKit/UIKit.h>

@class KWMSearchFeedBackView;
@protocol KWMSearchFeedBackViewDelegate <NSObject>
- (void)kwm_searchGoods;
- (void)kwm_cancelSearch;
- (void)kwm_tfReturnSearchFinished:(NSString *)text;
- (void)kwm_beginEditing;
@end

@interface KWMSearchFeedBackView : UIView <UITextFieldDelegate>
@property (weak, nonatomic) IBOutlet UITextField *tfSearch;
@property (weak, nonatomic) IBOutlet UILabel *lbGoodsNum;
@property (weak, nonatomic) IBOutlet UIButton *btnCancel;
@property (weak, nonatomic) IBOutlet UIButton *btnSearch;
@property (weak, nonatomic) IBOutlet UIView *vContent;
@property (weak, nonatomic) id<KWMSearchFeedBackViewDelegate>delegate;

- (IBAction)onClickSearchBtn:(id)sender;
- (IBAction)onClickCancelBtn:(id)sender;

@end