UseStorageCell.h 524 B

12345678910111213141516171819202122
  1. //
  2. // UseStorageCell.h
  3. // IBOSSmini
  4. //
  5. // Created by ssl on 2018/3/1.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "UseStorageModel.h"
  10. @protocol UseStorageCellDelegate <NSObject>
  11. -(void)update:(int) position flag:(int) flag text:(NSString *) str;
  12. @end
  13. @interface UseStorageCell : UITableViewCell
  14. @property (nonatomic,assign) NSInteger position;
  15. @property(nonatomic,weak) id<UseStorageCellDelegate> cellDelegate;
  16. - (void)parseEarnestInfo:(UseStorageModel *) model;
  17. @end