AddressCell.h 862 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // AddressCell.h
  3. // yunbaolive
  4. //
  5. // Created by ybRRR on 2020/2/3.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "AddressModel.h"
  10. #import "RejectAddressModel.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @protocol addressCellEditDelagate <NSObject>
  13. -(void)editAddressWithModel:(AddressModel *)model;
  14. @end
  15. @interface AddressCell : UITableViewCell
  16. @property(nonatomic, strong)UILabel *nameLb;
  17. @property(nonatomic, strong)UILabel *phoneLb;
  18. @property(nonatomic, strong)UILabel *statusLb;
  19. @property(nonatomic, strong)UILabel *addressLb;
  20. @property(nonatomic, strong)UILabel *editLb;
  21. @property(nonatomic, strong)UIButton *editbtn;
  22. @property (nonatomic, strong)AddressModel *model;
  23. @property (nonatomic, strong)RejectAddressModel *rejectModel;
  24. @property (nonatomic, strong)id<addressCellEditDelagate>delegate;
  25. @end
  26. NS_ASSUME_NONNULL_END