| 12345678910111213141516171819202122232425 |
- //
- // DepositAmountCell.h
- // IBOSS
- //
- // Created by 关宏厚 on 2020/7/24.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "PayTypeModel.h"
- @protocol UseDepositAmountCellDelegate <NSObject>
- -(void)update:(int) position flag:(int) flag text:(NSString *) str;
- @end
- @interface PaymentMethodCell : UITableViewCell<UITextFieldDelegate>
- @property (nonatomic,assign) NSInteger position;
- @property(nonatomic,weak) id<UseDepositAmountCellDelegate> cellDelegate;
- - (void)parsePaymentMethod:(PayTypeModel *) model;
- @end
|