KWMGiftCardCell.h 650 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
//
//  KWMGiftCardCell.h
//  iCemarose
//
//  Created by HouWeiBin on 16/9/28.
//  Copyright © 2016年 kollway. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "Buy/Buy.h"

@protocol KWMRemoveGiftCardDelegate <NSObject>

- (void)kwm_onClickRemove:(BUYGiftCard *)giftCard;

@end

@interface KWMGiftCardCell : UITableViewCell

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

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

-(IBAction)onClickRemove:(id)sender;

@property (nonatomic) BUYGiftCard *giftCard;

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

-(void)setData:(BUYGiftCard *)giftCard;

@end