// // RechargeWayCell.h // BuguLive // // Created by 王珂 on 17/5/10. // Copyright © 2017年 xfg. All rights reserved. // #import #import "EdgeInsetsLabel.h" @class RechargeWayCell; @protocol RechargeWayCellDelegate - (void)clickWithRechargeWayCell:(RechargeWayCell *)cell; @end @interface RechargeWayCell : UICollectionViewCell @property (nonatomic, weak) id delegate; //@property (weak, nonatomic) IBOutlet UILabel *payWayLabel; @property (weak, nonatomic) IBOutlet EdgeInsetsLabel *payWayLabel; @property (nonatomic, strong) PayTypeModel *model; @end