FeeAmountCell.h 546 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 "FeeAmountModel.h"
  10. @protocol FeeAmountCellDelegate <NSObject>
  11. -(void)update:(int) position flag:(int) flag text:(NSString *) str;
  12. @end
  13. @interface FeeAmountCell : UITableViewCell<UITextFieldDelegate>
  14. @property (nonatomic,assign) NSInteger position;
  15. @property(nonatomic,weak) id<FeeAmountCellDelegate> cellDelegate;
  16. - (void)parseDepositInfo:(FeeAmountModel *) model;
  17. @end