21 lines
425 B
Objective-C
21 lines
425 B
Objective-C
//
|
|
// BottleNerbyViewController.h
|
|
// TreeHole
|
|
//
|
|
// Created by 郑创权 on 2022/10/6.
|
|
//
|
|
|
|
#import "PYBaseViewController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface BottleNerbyViewController : PYBaseViewController
|
|
|
|
@property (nonatomic, strong) UITableView *contentTableView;
|
|
-(void)shaiXuanClick;
|
|
@property (nonatomic,strong) UIButton *navBottleBtn;
|
|
@property (nonatomic,strong) UIView *leftView;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|