| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // AddressCell.h
- // yunbaolive
- //
- // Created by ybRRR on 2020/2/3.
- // Copyright © 2020 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "AddressModel.h"
- #import "RejectAddressModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol addressCellEditDelagate <NSObject>
- -(void)editAddressWithModel:(AddressModel *)model;
- @end
- @interface AddressCell : UITableViewCell
- @property(nonatomic, strong)UILabel *nameLb;
- @property(nonatomic, strong)UILabel *phoneLb;
- @property(nonatomic, strong)UILabel *statusLb;
- @property(nonatomic, strong)UILabel *addressLb;
- @property(nonatomic, strong)UILabel *editLb;
- @property(nonatomic, strong)UIButton *editbtn;
- @property (nonatomic, strong)AddressModel *model;
- @property (nonatomic, strong)RejectAddressModel *rejectModel;
- @property (nonatomic, strong)id<addressCellEditDelagate>delegate;
- @end
- NS_ASSUME_NONNULL_END
|