// // RechargeWayView.h // BuguLive // // Created by 王珂 on 17/3/13. // Copyright © 2017年 xfg. All rights reserved. // #import #import "AccountRechargeModel.h" #import "RechargeWayCell.h" @protocol RechargeWayViewDelegate @optional - (void)choseRechargeWayWithIndex:(NSInteger) index; - (void)choseRechargeWayWithWayName:(NSString *) wayName; @end @interface RechargeWayView : UIView @property (nonatomic, weak) id delegate; @property (nonatomic, strong) NSArray *rechargeWayArr; //pay_list字段对应的数组 @property (nonatomic, assign) NSInteger selectIndex; @property (nonatomic, assign) NSInteger nowIndex; @property (nonatomic, strong) UICollectionView *collectionView; @end