KWMDiscountVC.h 758 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
//
//  KWMDiscountVC.h
//  iCemarose
//
//  Created by HouWeiBin on 16/9/2.
//  Copyright © 2016年 kollway. All rights reserved.
//

#import "KWMBaseVC.h"
#import "Buy/Buy.h"

@protocol KWMDiscountDelegate <NSObject>

- (void)kwm_addedDiscount:(BUYCheckout *)checkout;

@end
@interface KWMDiscountVC : KWMBaseVC<UITextFieldDelegate>

@property (weak, nonatomic) IBOutlet UITextField *tfDiscount;

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

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

@property (weak, nonatomic) IBOutlet UIButton *btnClear;

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


@property (nonatomic) BUYCheckout *checkout;

- (IBAction)onClickClear:(id)sender;

- (IBAction)onClickAdd:(id)sender;


@end