| 12345678910111213141516171819202122 |
- //
- // UseEarnestAmountCell.h
- // IBOSSmini
- //
- // Created by ssl on 2018/2/28.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "UseEarnestAmountModel.h"
- @protocol UseEarnestAmountCellDelegate <NSObject>
- -(void)update:(int) position flag:(int) flag text:(NSString *) str;
- @end
- @interface UseEarnestAmountCell : UITableViewCell
- @property (nonatomic,assign) NSInteger position;
- @property(nonatomic,weak) id<UseEarnestAmountCellDelegate> cellDelegate;
- - (void)parseEarnestInfo:(UseEarnestAmountModel *) model;
- @end
|