// // 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