JLChen
2021-11-17 1c6fec7f66cb4864eb4cc17ac8c529dc05e6995d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
//  TopBarView.h
//  HdlSmartIoT
//
//  Created by 陈嘉乐 on 2021/5/18.
//
 
#import <UIKit/UIKit.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface TopBarView : UIView
 
@property (nonatomic, strong) UIButton      *backButton;//返回按钮
@property (nonatomic, strong) UILabel       *titleLabel;//标题
 
-(void)setTitle:(NSString *)title;
 
@end
 
NS_ASSUME_NONNULL_END