PaymentMethodCell.h 562 B

12345678910111213141516171819202122232425
  1. //
  2. // DepositAmountCell.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2020/7/24.
  6. // Copyright © 2020 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "PayTypeModel.h"
  10. @protocol UseDepositAmountCellDelegate <NSObject>
  11. -(void)update:(int) position flag:(int) flag text:(NSString *) str;
  12. @end
  13. @interface PaymentMethodCell : UITableViewCell<UITextFieldDelegate>
  14. @property (nonatomic,assign) NSInteger position;
  15. @property(nonatomic,weak) id<UseDepositAmountCellDelegate> cellDelegate;
  16. - (void)parsePaymentMethod:(PayTypeModel *) model;
  17. @end