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