RechargeWayCell.h 643 B

1234567891011121314151617181920212223242526
  1. //
  2. // RechargeWayCell.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 17/5/10.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "EdgeInsetsLabel.h"
  10. @class RechargeWayCell;
  11. @protocol RechargeWayCellDelegate<NSObject>
  12. - (void)clickWithRechargeWayCell:(RechargeWayCell *)cell;
  13. @end
  14. @interface RechargeWayCell : UICollectionViewCell
  15. @property (nonatomic, weak) id<RechargeWayCellDelegate> delegate;
  16. //@property (weak, nonatomic) IBOutlet UILabel *payWayLabel;
  17. @property (weak, nonatomic) IBOutlet EdgeInsetsLabel *payWayLabel;
  18. @property (nonatomic, strong) PayTypeModel *model;
  19. @end