1234567891011121314151617181920212223 |
- //
- // ZBShopCarView.h
- // ZBProject
- //
- // Created by 学丽 on 2019/3/27.
- // Copyright © 2019 ZB. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ZBShopCarView : UIView<UITableViewDelegate,UITableViewDataSource>
- @property(nonatomic,strong)UIView *lineView;
- @property(nonatomic,strong)UIButton *goodBtn;
- @property(nonatomic,strong)UIButton *saleBtn;
- @property(nonatomic,strong)UITableView *tableViews;
- @property(nonatomic,strong)NSMutableArray *carArray;
- @end
- NS_ASSUME_NONNULL_END
|